LANCommander/LANCommander.SDK/Models/Tag.cs

11 lines
223 B
C#
Raw Permalink Normal View History

2023-01-05 02:31:02 +00:00
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Tag : BaseModel
{
public string Name { get; set; }
public virtual IEnumerable<Game> Games { get; set; }
}
}