Refactoring, database structure changed
This commit is contained in:
19
WatchIt.Database/Model/Roles/RoleCreator.cs
Normal file
19
WatchIt.Database/Model/Roles/RoleCreator.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace WatchIt.Database.Model.Roles;
|
||||
|
||||
public class RoleCreator : Role
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
public short CreatorTypeId { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region NAVIGATION
|
||||
|
||||
// Creator type
|
||||
public virtual RoleCreatorType CreatorType { get; set; } = default!;
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user