using System; using Erp.Platform.Enums; using Volo.Abp.Application.Dtos; namespace Erp.Platform.Uoms; public class UomDto : AuditedEntityDto { public string Name { get; set; } public UomType Type { get; set; } public decimal Ratio { get; set; } public bool IsActive { get; set; } public decimal Rounding { get; set; } public Guid UomCategoryId { get; set; } public string UomCategoryName { get; set; } // Listelemede gösterim için opsiyonel }