| 1234567891011121314151617181920212223242526272829303132 |
- 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)
- {
- }
- }
- }
|