mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-04 22:43:07 +00:00
19 lines
572 B
C#
19 lines
572 B
C#
namespace AutoClient.Modes.FolderStore
|
|
{
|
|
[Serializable]
|
|
public class FolderStatus
|
|
{
|
|
public List<FileStatus> Files { get; set; } = new List<FileStatus>();
|
|
}
|
|
|
|
[Serializable]
|
|
public class FileStatus
|
|
{
|
|
public string Filename { get; set; } = string.Empty;
|
|
public string BasicCid { get; set; } = string.Empty;
|
|
public string EncodedCid { get; set; } = string.Empty;
|
|
public string PurchaseId { get; set; } = string.Empty;
|
|
public DateTime PurchaseFinishedUtc { get; set; } = DateTime.MinValue;
|
|
}
|
|
}
|