Files
ClubPenguinServer/MareSynchronosServer/MareSynchronosStaticFilesServer/Utils/UserRequest.cs
rootdarkarchon d40730bca3 some file server fixes I guess
break, not return

fix queue processing

fix queue processing, again

fix queue processing, the third

do not use async for queue processing

something
2024-08-27 14:22:10 +00: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;
}