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; } } }