20 lines
281 B
C#
Raw Normal View History

2024-12-23 11:33:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectFuel.Entities.Enums;
[Flags]
public enum Driver_License
{
None = 0,
A = 1,
B = 2,
C = 4,
D = 8,
BE = 16,
CE = 32
}