PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Enums/LunchStatus.cs

15 lines
251 B
C#
Raw Normal View History

2023-04-07 10:55:40 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-04-07 21:53:52 +04:00
namespace CanteenDataModels.Enums
2023-04-07 10:55:40 +04:00
{
2023-04-07 21:53:52 +04:00
public enum LunchStatus
2023-04-07 10:55:40 +04:00
{
2023-04-07 21:53:52 +04:00
Создан = 0,
Окончен = 1
2023-04-07 10:55:40 +04:00
}
}