17 lines
		
	
	
		
			526 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			526 B
		
	
	
	
		
			C#
		
	
	
using System;
 | 
						|
using System.ComponentModel.DataAnnotations.Schema;
 | 
						|
 | 
						|
namespace IRaCIS.Core.Domain.Models
 | 
						|
{
 | 
						|
    [Table("Sponsor")]
 | 
						|
    public partial class Sponsor : Entity, IAuditUpdate, IAuditAdd
 | 
						|
    {
 | 
						|
        public string SponsorName { get; set; } = String.Empty;
 | 
						|
 | 
						|
        public DateTime CreateTime { get; set; } = DateTime.Now;
 | 
						|
        public Guid CreateUserId { get; set; } = Guid.Empty;
 | 
						|
        public DateTime UpdateTime { get; set; } = DateTime.Now;
 | 
						|
        public Guid UpdateUserId { get; set; } = Guid.Empty;
 | 
						|
    }
 | 
						|
}
 |