ComplianceServer/oldcode/Core.Model/EntityAudit/Mon_FairPrice.cs

13 lines
271 B
C#

using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.EntityAudit
{
public class Mon_FairPrice
{
[Key]
public int Id { get; set; }
public string ModuleId { get; set; }
public decimal Price { get; set; }
}
}