15 lines
228 B
C#
15 lines
228 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UTB.Eshop.Web.Models.Identity
|
|
{
|
|
public enum Roles
|
|
{
|
|
Admin,
|
|
Manager,
|
|
Customer
|
|
}
|
|
}
|