Refactoring, database structure changed
This commit is contained in:
20
WatchIt.Database/Model/Roles/RoleActor.cs
Normal file
20
WatchIt.Database/Model/Roles/RoleActor.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace WatchIt.Database.Model.Roles;
|
||||
|
||||
public class RoleActor : Role
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
public short ActorTypeId { get; set; }
|
||||
public string Name { get; set; } = default!;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region NAVIGATION
|
||||
|
||||
// Actor type
|
||||
public virtual RoleActorType ActorType { get; set; } = default!;
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user