LogikalElevationSummary.cs 804 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Core;
  4. using InABox.Integration.Logikal;
  5. namespace PRSDesktop.Integrations.Logikal
  6. {
  7. public class LogikalElevationSummary : LogikalItem, ILogikalElevationSummary
  8. {
  9. [NullEditor]
  10. public Guid ID { get; set; }
  11. [EditorSequence(1)]
  12. [TextBoxEditor]
  13. public string? Name { get; set; }
  14. [EditorSequence(2)]
  15. [TextBoxEditor(Width = 200)]
  16. public string? Description { get; set; }
  17. [EditorSequence(3)]
  18. [TextBoxEditor(Width = 200)]
  19. public string? Size { get; set; }
  20. [NullEditor]
  21. public byte[]? Thumbnail { get; set; }
  22. public override void ValidateQuery(string sql, List<string> errors)
  23. {
  24. }
  25. }
  26. }