mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
9 lines
No EOL
222 B
C#
9 lines
No EOL
222 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class UploadEmail
|
|
{
|
|
[JsonProperty("access")] public string? Access { get; set; }
|
|
[JsonProperty("email")] public string? Email { get; set; }
|
|
} |