Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Genres/Genre.cs

12 lines
269 B
C#
Raw Normal View History

2024-04-27 22:36:16 +02:00
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; }
}