MRB webassembly
This commit is contained in:
11
MesaFabApproval.Shared/Models/Role.cs
Normal file
11
MesaFabApproval.Shared/Models/Role.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace MesaFabApproval.Shared.Models;
|
||||
|
||||
public class Role {
|
||||
private string Value { get; set; }
|
||||
|
||||
private Role(string value) { this.Value = value; }
|
||||
|
||||
public static Role MRB_APPROVER { get { return new Role("MRB Approver"); } }
|
||||
|
||||
public override string ToString() => Value;
|
||||
}
|
Reference in New Issue
Block a user