piwigodotnet/PiwigoDotnet/Piwigo.Client/Contract/ImageUpload.cs

13 lines
479 B
C#
Raw Normal View History

2022-10-22 22:38:25 +02:00
namespace Piwigo.Client.Contract;
public record ImageUpload(string OriginalSum)
{
public string? OriginalFileName { get; init; }
public string? Name { get; init; }
public string? Author { get; init; }
public DateTime? CreatedAt { get; init; }
public string? Comment { get; init; }
public int? Level { get; init; }
public IReadOnlyCollection<(int AlbumId, int? Rank)>? Albums { get; init; }
public IReadOnlyCollection<int>? TagIds { get; init; }
}