20 lines
282 B
C#
20 lines
282 B
C#
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,
|
|
}
|