17 lines
291 B
C#
17 lines
291 B
C#
|
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
|
|||
|
}
|
|||
|
}
|