using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPE.App.Web.Models { /// /// Launch link data as retrieved from the API /// public class LinkModel { public string Url { get; set; } public string LinkType { get; set; } } }