using Quadarax.Application.QLiberace.Common.Entities.Base; namespace Quadarax.Application.QLiberace.Base.Entities; public class Setting : QlbrcEntityTrackedWithoutId { public long ParentId { get; set; } public int SequenceNo { get; set; } public string ModuleCode { get; set; } public string Code { get; set; } public string Description { get; set; } public string ValueTypeQN { get; set; } public string Value { get; set; } public string IsEnabled { get; set; } }