18 lines
435 B
C#
18 lines
435 B
C#
using IRaCIS.Core.Domain.Share;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Table("TrialEmailNoticeUser")]
|
|
public class TrialEmailNoticeUser : Entity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
|
|
[JsonIgnore]
|
|
public TrialEmailNoticeConfig TrialEmailNoticeConfig { get; set; }
|
|
public UserTypeEnum UserType { get; set; }
|
|
public Guid TrialEmailNoticeConfigId { get; set; }
|
|
public EmailUserType EmailUserType { get; set; }
|
|
}
|
|
|