NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/LocalDb/NonInvent/SystemSettings.cs
2026-01-20 07:44:30 +08:00

17 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.LocalDb.NonInvent
{
public class SystemSettings
{
public string? PONoVatInc { get; set; }
public string? PONoVatEx { get; set; }
public string? IPONoVatInc { get; set; }
public string? IPONoVatEx { get; set; }
}
}