LANCommander/LANCommander.Server.ImportExport/Legacy/Models/Redistributable.cs
2025-12-04 23:44:42 -06:00

11 lines
No EOL
393 B
C#

namespace LANCommander.Server.ImportExport.Legacy.Models;
internal class Redistributable : BaseModel
{
public string Name { get; set; }
public string Description { get; set; }
public string Notes { get; set; }
public DateTime ReleasedOn { get; set; }
public virtual IEnumerable<Archive> Archives { get; set; }
public virtual IEnumerable<Script> Scripts { get; set; }
}