12345678910111213 |
- namespace InABox.Logikal
- {
- public class LogikalElevationResponse<TElevation, TPart> : LogikalResponse
- where TElevation : ILogikalElevation<TPart>
- where TPart : ILogikalPart
- {
- public override LogikalMethod Method() => LogikalMethod.Elevation;
-
- public TElevation Elevation { get; set; }
- public override string ToString() => Elevation?.Name ?? "";
- }
- }
|