12 lines
248 B
C#
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; }
|
|
} |