LANCommander/LANCommander.Client.Data/Models/Tag.cs

16 lines
367 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace LANCommander.Client.Data.Models
{
[Table("Tags")]
public class Tag : BaseModel
{
public string Name { get; set; }
[JsonIgnore]
public virtual List<Game> Games { get; set; }
}
}