OneDrive Backup

OneDrive Backup
This commit is contained in:
2023-07-28 22:36:06 +07:00
parent e1c6e91a0a
commit d70d81ebdf
244 changed files with 75229 additions and 0 deletions
@@ -0,0 +1,20 @@
using Newtonsoft.Json;
namespace hassio_onedrive_backup.Contracts
{
public class HassSupervisorInfoResponse
{
[JsonProperty("result")]
public string Result { get; set; }
[JsonProperty("data")]
public Data DataProperty { get; set; }
public class Data
{
[JsonProperty("timezone")]
public string Timezone{ get; set; }
}
}
}