2024-10-06 14:51:58 +02:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace WatchIt.Common.Model.Roles;
|
|
|
|
|
|
2024-10-08 19:56:14 +02:00
|
|
|
public abstract class ActorRole
|
2024-10-06 14:51:58 +02:00
|
|
|
{
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("type_id")]
|
2024-10-08 02:14:16 +02:00
|
|
|
public short TypeId { get; set; }
|
2024-10-06 14:51:58 +02:00
|
|
|
|
|
|
|
|
[JsonPropertyName("name")]
|
2024-10-08 02:14:16 +02:00
|
|
|
public string Name { get; set; }
|
2024-10-06 14:51:58 +02:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|