Files
cleanuperr/code/Domain/Models/Deluge/Response/TorrentStatus.cs
T
2024-12-17 00:40:35 +02:00

12 lines
248 B
C#

namespace Domain.Models.Deluge.Response;
public sealed record TorrentStatus
{
public string? Hash { get; set; }
public string? State { get; set; }
public string? Name { get; set; }
public ulong Eta { get; set; }
}