2025-06-18 10:29:25 +00:00
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
public class Uom : FullAuditedEntity<Guid>
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Type { get; set; } // Referans birime göre durumu
|
|
|
|
|
public decimal Ratio { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
public decimal Rounding { get; set; }
|
2025-08-19 21:01:24 +00:00
|
|
|
public Guid UomCategoryId { get; set; }
|
2025-06-18 10:29:25 +00:00
|
|
|
|
|
|
|
|
public UomCategory UomCategory { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|