d70d81ebdf
OneDrive Backup
20 lines
453 B
C#
20 lines
453 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace onedrive_backup.Contracts
|
|
{
|
|
public class HassAddonInfoResponse
|
|
{
|
|
[JsonProperty("data")]
|
|
public Data DataProperty { get; set; }
|
|
|
|
public class Data
|
|
{
|
|
[JsonProperty("ingress_entry")]
|
|
public string IngressEntry { get; set; }
|
|
|
|
[JsonProperty("ingress_url")]
|
|
public string IngressUrl { get; set; }
|
|
}
|
|
}
|
|
}
|