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 CreatorRole
|
2024-10-06 14:51:58 +02:00
|
|
|
{
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("type_id")]
|
|
|
|
|
public required short TypeId { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|