15 lines
222 B
C#
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
|
|||
|
}
|