Case_accounting/CaseAccounting/CaseAccountingDataModels/Enum/Role.cs

15 lines
219 B
C#
Raw Normal View History

2023-03-26 17:56:26 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-05-18 01:15:02 +04:00
namespace CaseAccountingDataModels.Enum
2023-03-26 17:56:26 +04:00
{
2023-05-18 01:15:02 +04:00
public enum Role
2023-03-26 17:56:26 +04:00
{
2023-05-18 01:15:02 +04:00
Provider = 0,
Customer = 1
2023-03-26 17:56:26 +04:00
}
}