LANCommander/LANCommander.Server.Data/Models/Tool.cs

20 lines
635 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Server.Data.Models
{
[Table("Tools")]
public class Tool : BaseModel
{
public string Name { get; set; }
public string? Description { get; set; }
public string? Notes { get; set; }
public bool AlwaysInstall { get; set; }
public ICollection<Action>? Actions { get; set; }
public ICollection<Archive>? Archives { get; set; }
public ICollection<Script>? Scripts { get; set; }
public ICollection<Game>? Games { get; set; }
public ICollection<Page>? Pages { get; set; }
}
}