Setting.cs 502 B

123456789101112131415
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. namespace Quadarax.Application.QLiberace.Base.Entities;
  3. public class Setting : QlbrcEntityTrackedWithoutId
  4. {
  5. public long ParentId { get; set; }
  6. public int SequenceNo { get; set; }
  7. public string ModuleCode { get; set; }
  8. public string Code { get; set; }
  9. public string Description { get; set; }
  10. public string ValueTypeQN { get; set; }
  11. public string Value { get; set; }
  12. public string IsEnabled { get; set; }
  13. }