19 lines
587 B
C#
19 lines
587 B
C#
|
|
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 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; }
|
|||
|
|
}
|
|||
|
|
}
|