16 lines
414 B
C#
16 lines
414 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; }
|
|
}
|