2023-01-08 21:43:01 -06:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2023-01-12 01:25:32 -06:00
|
|
|
|
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")]
|
2024-06-30 22:55:55 -05:00
|
|
|
|
public class Genre : BaseTaxonomyModel
|
2023-01-08 21:43:01 -06:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|