2023-10-18 01:14:31 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2024-08-04 18:44:33 -05:00
|
|
|
|
namespace LANCommander.Server.Data.Models
|
2023-10-18 01:14:31 -05:00
|
|
|
|
{
|
|
|
|
|
|
[Table("Redistributables")]
|
|
|
|
|
|
public class Redistributable : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
public string? Notes { get; set; }
|
2026-05-15 00:14:46 -05:00
|
|
|
|
public string? OptionSchema { get; set; }
|
2023-10-18 01:14:31 -05:00
|
|
|
|
|
2024-11-27 01:51:47 -06:00
|
|
|
|
public ICollection<Archive>? Archives { get; set; }
|
|
|
|
|
|
public ICollection<Script>? Scripts { get; set; }
|
|
|
|
|
|
public ICollection<Game>? Games { get; set; }
|
|
|
|
|
|
public ICollection<Page>? Pages { get; set; }
|
2023-10-18 01:14:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|