using Quadarax.Application.QLiberace.Common.Entities.Base; namespace Quadarax.Application.QLiberace.Processor.Entities { public class QueueData : QlbrcEntity { public int ParentId { get; set; } public string Code { get; set; } = null!; public int SequenceNo { get; set; } public string ValueTypeQualified { get; set; } = null!; public string? Value { get; set; } } }