mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 13:04:16 +01:00
11 lines
No EOL
241 B
C#
11 lines
No EOL
241 B
C#
namespace MareSynchronos.Services.Mediator;
|
|
|
|
public abstract record MessageBase
|
|
{
|
|
public virtual bool KeepThreadContext => false;
|
|
}
|
|
|
|
public record SameThreadMessage : MessageBase
|
|
{
|
|
public override bool KeepThreadContext => true;
|
|
} |