LANCommander/LANCommander.Server.Data/Models/Genre.cs

11 lines
217 B
C#
Raw Permalink Normal View History

2023-01-08 21:43:01 -06:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
2023-01-08 21:43:01 -06:00
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
2023-01-08 21:43:01 -06:00
{
[Table("Genres")]
public class Genre : BaseTaxonomyModel
2023-01-08 21:43:01 -06:00
{
}
}