LogikalElevation.cs 819 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Core;
  4. using InABox.Logikal;
  5. namespace Comal.Classes
  6. {
  7. public class LogikalElevation : LogikalItem, ILogikalElevation
  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. [NullEditor]
  23. public byte[]? Drawing { get; set; }
  24. public override void ValidateQuery(string sql, List<string> errors)
  25. {
  26. }
  27. }
  28. }