Test plan incomplete, basic compaints support

This commit is contained in:
Dimitar Byalkov
2023-06-09 02:57:45 +02:00
parent 53c42a35d8
commit d8e185757d
32 changed files with 1294 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
@@ -8,11 +9,11 @@ namespace Models
{
public enum UserRole
{
[Display(Name = "Tenant")]
[Description("Tenant")]
TENANT,
[Display(Name = "Manager")]
[Description("Manager")]
MANAGER,
[Display(Name = "Administrator")]
[Description("Administrator")]
ADMIN
}
}