Coursework_ComputerStore_Li.../ComputerStoreDataModels/Enums/EmployeeRole.cs

15 lines
251 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDataModels.Enums
{
public enum EmployeeRole
{
Guarantor = 0,
Cotnractor = 1
}
}