mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 15:17:23 +01:00
6 lines
No EOL
184 B
C#
6 lines
No EOL
184 B
C#
namespace MareSynchronosStaticFilesServer.Utils;
|
|
|
|
public record UserRequest(Guid RequestId, string User, List<string> FileIds)
|
|
{
|
|
public bool IsCancelled { get; set; } = false;
|
|
} |