1234567891011121314151617181920212223 |
- 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>
- {
- }
|