LANCommander/LANCommander.Launcher.Data/Models/Tool.cs
2026-06-27 11:51:55 -05:00

17 lines
532 B
C#

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; }
public string? LatestVersion { get; set; }
public virtual ICollection<Game>? Games { get; set; } = new List<Game>();
public virtual ICollection<GameTool> GameTools { get; set; } = new List<GameTool>();
}
}