ComplianceServer/oldcode/Model/QueryMap/ErrMsg.cs

14 lines
255 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.QueryMap
{
public class ErrMsg
{
[NotMapped]
public string ErrName { get; set; }
[NotMapped]
public int ErrValue { get; set; }
}
}