17 lines
532 B
C#
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>();
|
|
}
|
|
}
|