2023-04-05 19:26:00 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerStoreDataModels.Enums
|
|
|
|
|
{
|
2023-04-05 21:24:46 +04:00
|
|
|
|
public enum Role
|
2023-04-05 19:26:00 +04:00
|
|
|
|
{
|
2023-04-05 21:24:46 +04:00
|
|
|
|
Unknown = -1,
|
2023-04-05 19:26:00 +04:00
|
|
|
|
Guarantor = 0,
|
|
|
|
|
Cotnractor = 1
|
|
|
|
|
}
|
|
|
|
|
}
|