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

13 lines
449 B
C#

namespace Piwigo.Client.Contract;
public record ImageInfo
{
public string? FileName { 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; }
}