Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Genres/Genre.cs
2024-04-27 22:36:16 +02:00

12 lines
269 B
C#

using System.Text.Json.Serialization;
namespace WatchIt.Common.Model.Genres;
public class Genre
{
[JsonPropertyName("name")]
public required string Name { get; set; }
[JsonPropertyName("description")]
public string? Description { get; set; }
}