| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using InABox.Core;
- using InABox.Integration.Logikal;
- namespace PRSDesktop.Integrations.Logikal
- {
- public class LogikalElevationSummary : LogikalItem, ILogikalElevationSummary
- {
- [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; }
-
- public override void ValidateQuery(string sql, List<string> errors)
- {
-
- }
- }
- }
|