10 lines
219 B
C#
10 lines
219 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
|
{
|
|
[Table("Genres")]
|
|
public class Genre : BaseTaxonomyModel
|
|
{
|
|
}
|
|
}
|