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

17 lines
483 B
C#
Raw Normal View History

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
}