2024-12-23 11:33:05 +04:00

15 lines
222 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectFuel.Entities.Enums;
public enum Shift
{
None = 0,
Day = 1,
Night = 2
}