using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace sharpupdater { public class Info { public enum InfoType { Url, File, Notes } public InfoType Type { get; set; } public string Url { get; set; } public Info(InfoType type, string url) { this.Type = type; this.Url = url; } } }