irc-netcore-api/IRaCIS.Core.Domain/Institution/Sponsor.cs

20 lines
463 B
C#

namespace IRaCIS.Core.Domain.Models
{
[Table("Sponsor")]
public partial class Sponsor : BaseFullAuditEntity
{
#region µ¼º½ÊôÐÔ
#endregion
public string SponsorName { get; set; } = String.Empty;
public string SponsorNameCN { get; set; } = String.Empty;
public string SponsorCode { get; set; } = String.Empty;
public bool IsTrialLevel { get; set; }
public Guid? TrialId { get; set; }
}
}