LogikalElevationResponse.cs 409 B

12345678910111213
  1. namespace InABox.Logikal
  2. {
  3. public class LogikalElevationResponse<TElevation, TPart> : LogikalResponse
  4. where TElevation : ILogikalElevation<TPart>
  5. where TPart : ILogikalPart
  6. {
  7. public override LogikalMethod Method() => LogikalMethod.Elevation;
  8. public TElevation Elevation { get; set; }
  9. public override string ToString() => Elevation?.Name ?? "";
  10. }
  11. }