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