2024-04-28 15:15:17 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankDataModels.Enums
|
|
|
|
|
{
|
2024-05-29 17:24:55 +04:00
|
|
|
|
public enum MailsEnum
|
|
|
|
|
{
|
|
|
|
|
Клиент = 0,
|
2024-04-28 15:15:17 +04:00
|
|
|
|
|
2024-05-29 17:24:55 +04:00
|
|
|
|
Кассир = 1
|
|
|
|
|
}
|
2024-04-28 15:15:17 +04:00
|
|
|
|
}
|