16 lines
484 B
C#
16 lines
484 B
C#
using System;
|
|
using Erp.Platform.Enums;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
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; }
|
|
public string UomCategoryName { get; set; } // Listelemede gösterim için opsiyonel
|
|
}
|