| 12345678910111213141516171819202122232425262728 |
- using InABox.Core;
- using InABox.DynamicGrid;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace InABox.Poster.MYOB;
- public class MYOBCompanyFile : EnclosedEntity
- {
- [NullEditor]
- public Guid ID { get; set; }
- [EditorSequence(1)]
- [TextBoxEditor]
- public string Name { get; set; }
- }
- public class MYOBCompanyFileGrid : DynamicItemsListGrid<MYOBCompanyFile>
- {
- protected override void DoReconfigure(DynamicGridOptions options)
- {
- base.DoReconfigure(options);
- options.ReadOnly = true;
- }
- }
|