LANCommander/LANCommander.Launcher.Data/Models/Tag.cs

12 lines
260 B
C#
Raw Permalink Normal View History

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