15 lines
260 B
C#
15 lines
260 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|