LANCommander/LANCommander.Server.Data/Models/Tag.cs

12 lines
258 B
C#
Raw Permalink Normal View History

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