15 lines
212 B
C#
Raw Normal View History

2023-04-07 19:09:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityModels.Enums
2023-04-07 19:09:06 +04:00
{
public enum Role
{
Provider = 0,
Customer = 1
}
2023-04-07 19:09:06 +04:00
}