mirror of
https://github.com/Caraxi/mare.client.git
synced 2026-02-05 13:34:36 +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;
|
|
} |