mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-22 04:38:48 -05:00
9 lines
209 B
C#
9 lines
209 B
C#
using Domain.Enums;
|
|
|
|
namespace Infrastructure.Verticals.DownloadClient;
|
|
|
|
public sealed record SeedingCheckResult
|
|
{
|
|
public bool ShouldClean { get; set; }
|
|
public CleanReason Reason { get; set; }
|
|
} |