ComplianceServer/oldcode/Core.Model/Entity/RES_MOBILE_MD5.cs

12 lines
225 B
C#

using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.Entity
{
public class RES_MOBILE_MD5
{
[Key]
public string ResId { get; set; }
public string Md5 { get; set; }
}
}