SupplierCategory.cs 484 B

123456789101112131415161718
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class SupplierCategory : Entity, IRemotable, IPersistent, ILicense<CoreLicense>, IExportable, IImportable,
  6. IMergeable
  7. {
  8. [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
  9. [EditorSequence(1)]
  10. public String Code { get; set; } = "";
  11. [TextBoxEditor]
  12. [EditorSequence(2)]
  13. public String Description { get; set; } = "";
  14. }
  15. }