Files
app/APP/DTO/Genre.cs
2022-04-18 16:08:19 +02:00

11 lines
204 B
C#

using System.Text.Json.Serialization;
namespace APP.DTO;
public class Genre
{
[JsonPropertyName("id")] public int Id { get; set; }
[JsonPropertyName("name")] public string Name { get; set; }
}