mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
9 lines
137 B
C#
9 lines
137 B
C#
using System;
|
|
|
|
namespace RemSox.Processing.IPC;
|
|
|
|
public abstract class Message
|
|
{
|
|
public int SenderProcessId { get; internal set; }
|
|
}
|