roles controller added
This commit is contained in:
13
WatchIt.Common/WatchIt.Common.Model/Roles/Role.cs
Normal file
13
WatchIt.Common/WatchIt.Common.Model/Roles/Role.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WatchIt.Common.Model.Roles;
|
||||
|
||||
public class Role
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public required string Name { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user