Files
2025-08-22 11:55:35 +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;
}