using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace sharpupdater { public class Update { public enum UpdateType { Url, Setup, Package } public UpdateType Type { get; set; } public string Url { get; set; } public Update(UpdateType type, string url) { this.Type = type; this.Url = url; } } }