mirror of
https://github.com/ezhevita/YandexKeyExtractor
synced 2025-08-16 19:40:48 +07:00
15 lines
380 B
C#
15 lines
380 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexKeyExtractor.Models {
|
|
public class BackupInfoResponse : StatusResponse {
|
|
[JsonPropertyName("backup_info")]
|
|
public BackupInfo? Info { get; set; }
|
|
|
|
public class BackupInfo {
|
|
[JsonNumberHandling(JsonNumberHandling.AllowReadingFromString)]
|
|
[JsonPropertyName("updated")]
|
|
public uint Updated { get; set; }
|
|
}
|
|
}
|
|
}
|