11 lines
258 B
C#
11 lines
258 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Server.Data.Models
|
|
{
|
|
[Table("Tags")]
|
|
public class Tag : BaseTaxonomyModel
|
|
{
|
|
}
|
|
}
|