2025-02-19 15:58:42 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2025-05-08 14:26:36 +08:00
|
|
|
namespace Model.Enums
|
2025-02-19 15:58:42 +08:00
|
|
|
{
|
2025-05-08 14:26:36 +08:00
|
|
|
public enum ActionEnums
|
2025-02-19 15:58:42 +08:00
|
|
|
{
|
2025-05-08 14:26:36 +08:00
|
|
|
Add,
|
|
|
|
|
Edit,
|
|
|
|
|
Delete,
|
|
|
|
|
View,
|
|
|
|
|
Search
|
2025-02-19 15:58:42 +08:00
|
|
|
}
|
|
|
|
|
}
|