LANCommander/LANCommander.Server.Data/Models/Redistributable.cs

18 lines
551 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations.Schema;
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
{
[Table("Redistributables")]
public class Redistributable : BaseModel
{
public string Name { get; set; }
public string? Description { get; set; }
public string? Notes { get; set; }
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; }
}
}