2025-11-11 19:49:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Erp.Platform.Enums;
|
2025-06-18 10:29:25 +00:00
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Platform.Uoms;
|
2025-06-18 10:29:25 +00:00
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|