26 lines
772 B
C#
26 lines
772 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BLL
|
|||
|
{
|
|||
|
public class EmailUser
|
|||
|
{
|
|||
|
public string ConGuid { get; set; }
|
|||
|
public string UserId { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
public string FO_NO { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public int UserType { get; set; }
|
|||
|
public int? dateYear { get; set; }
|
|||
|
public int? dateMonth { get; set; }
|
|||
|
public int? dateDay { get; set; }
|
|||
|
public int emailType { get; set; }
|
|||
|
public string emailName { get; set; }
|
|||
|
public int IsEvaluateType { get; set; }
|
|||
|
public string IsEvaluateName { get; set; }
|
|||
|
public int IsSafetyEvaluate { get; set; }
|
|||
|
}
|
|||
|
}
|