erp-platform/api/src/Erp.Platform.Application.Contracts/Uom/UomDto.cs

17 lines
484 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
using Erp.Platform.Enums;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.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; }
2025-11-12 12:59:31 +00:00
public string UomCategoryName { get; set; } // Listelemede gösterim için opsiyonel
2025-11-11 19:49:52 +00:00
}