ISEbd-21_Khaliullov_R.A._Co.../Canteen/CanteenDataModels/Enums/PaymentStatus.cs

17 lines
291 B
C#
Raw Normal View History

2024-04-30 18:48:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Enums
{
public enum PaymentStatus
{
Неизвестно = -1,
Неоплачен = 0,
Частично = 1,
Оплачен = 2
}
}