using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTO.Factory { public class ApiLink { public string Href { get; set; } public string Rel { get; set; } public string Method { get; set; } public ApiLink(string href, string rel, string method) { Href = href; Rel = rel; Method = method; } } }