10 lines
112 B
C#
10 lines
112 B
C#
namespace Erp.Platform.Enums;
|
|
|
|
public enum OperationEnum
|
|
{
|
|
Insert,
|
|
Update,
|
|
Delete,
|
|
Select
|
|
}
|
|
|