This commit is contained in:
Artyom_Yashin 2024-04-25 20:06:50 +04:00
parent e2f411f958
commit 8ef37cd46e
2 changed files with 17 additions and 0 deletions

View File

@ -10,5 +10,6 @@ namespace BankDataModels.Models
{
int Sum { get; set; }
DateTime RequestTime { get; set; }
RequestStatus Status { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels.Models
{
public enum RequestStatus
{
Неизвестен = -1,
Принята = 0,
Отклонена = 1,
Выполнена = 2
}
}