17 lines
No EOL
483 B
C#
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
|
|
} |