LANCommander/LANCommander.Launcher.Data/Models/Tool.cs

18 lines
532 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Launcher.Data.Models
{
[Table("Tools")]
public class Tool : BaseModel
{
public string Name { get; set; }
public string? Description { get; set; }
public string? Notes { get; set; }
2026-06-27 11:51:55 -05:00
public string? LatestVersion { get; set; }
2026-06-27 11:51:55 -05:00
public virtual ICollection<Game>? Games { get; set; } = new List<Game>();
2026-06-27 11:51:55 -05:00
public virtual ICollection<GameTool> GameTools { get; set; } = new List<GameTool>();
}
}