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
|
|
|
|
}
|
|
|
|
|
}
|