123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using InABox.Core;
- using InABox.Logikal;
- namespace Comal.Classes
- {
- public class LogikalElevation : LogikalItem, ILogikalElevation
- {
- [NullEditor]
- public Guid ID { get; set; }
- [EditorSequence(1)]
- [TextBoxEditor]
- public string? Name { get; set; }
- [EditorSequence(2)]
- [TextBoxEditor(Width = 200)]
- public string? Description { get; set; }
- [EditorSequence(3)]
- [TextBoxEditor(Width = 200)]
- public string? Size { get; set; }
- [NullEditor]
- public byte[]? Thumbnail { get; set; }
- [NullEditor]
- public byte[]? Drawing { get; set; }
- public override void ValidateQuery(string sql, List<string> errors)
- {
-
- }
- }
- }
|