namespace Quadarax.Application.QLiberace.Base.Entities.Interfaces; public interface IStructSetting { long ParentId { get; set; } int SequenceNo { get; set; } string ModuleCode { get; set; } string Code { get; set; } string? Description { get; set; } string ValueTypeQualified { get; set; } string? Value { get; set; } bool IsEnabled { get; set; } }