8 lines
226 B
C#
8 lines
226 B
C#
namespace ReactorMaintenance.Simulation;
|
|
|
|
public sealed record EditorToolCommand
|
|
{
|
|
public EEditorTool Tool { get; init; }
|
|
public ECarrierType Carrier { get; init; }
|
|
public ERemedyType RemedyType { get; init; }
|
|
} |