mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
10 lines
No EOL
290 B
C#
10 lines
No EOL
290 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class MiniUser : IDReference
|
|
{
|
|
[JsonProperty("type")] public string? Type { get; set; }
|
|
[JsonProperty("name")] public string? Name { get; set; }
|
|
[JsonProperty("login")] public string? Login { get; set; }
|
|
} |