using System; using System.Collections.Generic; namespace LANCommander.SDK.Models.Manifest { public class Redistributable : BaseManifest, IKeyedModel { public Guid Id { get; set; } public string Name { get; set; } public string Version { get; set; } public string Description { get; set; } public string Notes { get; set; } public string OptionSchema { get; set; } public Dictionary Options { get; set; } = new Dictionary(); public DateTime ReleasedOn { get; set; } public virtual ICollection Archives { get; set; } = new List(); public virtual ICollection