LANCommander/LANCommander.Server/Data/Models/Genre.cs
2024-08-04 18:44:33 -05:00

10 lines
217 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace LANCommander.Server.Data.Models
{
[Table("Genres")]
public class Genre : BaseTaxonomyModel
{
}
}