using Newtonsoft.Json; namespace ChatController.Data { public class LookupResult { public int Status { get; set; } [JsonProperty("URL")] public string Url { get; set; } public string SyncType { get; set; } } }