Files
2024-01-13 12:08:49 +01:00

6 lines
184 B
C#

namespace MareSynchronosStaticFilesServer.Utils;
public record UserRequest(Guid RequestId, string User, List<string> FileIds)
{
public bool IsCancelled { get; set; } = false;
}