mirror of
https://github.com/ezhevita/YandexKeyExtractor
synced 2025-08-16 19:40:48 +07:00
10 lines
197 B
C#
10 lines
197 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexKeyExtractor.Models;
|
|
|
|
public class BackupResponse : BackupInfoResponse
|
|
{
|
|
[JsonPropertyName("backup")]
|
|
public string? Backup { get; set; }
|
|
}
|