NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/PO/POCharges.cs
2026-02-19 17:23:28 +08:00

18 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.PO
{
public class POCharges
{
[Key]
public int OtherChargesId { get; set; }
public string? OtherChargesName { get; set; }
public decimal Amount { get; set; }
}
}