Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Roles/CreatorRole.cs

19 lines
411 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace WatchIt.Common.Model.Roles;
public class CreatorRole
{
#region PROPERTIES
[JsonPropertyName("type_id")]
public required short TypeId { get; set; }
[JsonPropertyName("media_id")]
public required long MediaId { get; set; }
[JsonPropertyName("person_id")]
public required long PersonId { get; set; }
#endregion
}