erp-platform/api/src/Kurs.Platform.Application.Contracts/Uom/UomDto.cs
2025-06-18 13:29:25 +03:00

17 lines
No EOL
483 B
C#

using System;
using Kurs.Platform.Enums;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Uoms;
public class UomDto : AuditedEntityDto<Guid>
{
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
}