20 lines
364 B
C#
20 lines
364 B
C#
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
|
|
} |