6 lines
184 B
C#
6 lines
184 B
C#
namespace MareSynchronosStaticFilesServer.Utils;
|
|
|
|
public record UserRequest(Guid RequestId, string User, List<string> FileIds)
|
|
{
|
|
public bool IsCancelled { get; set; } = false;
|
|
} |