mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 17:20:49 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using FreeSql.DataAnnotations;
 | 
						|
using repository_01;
 | 
						|
 | 
						|
namespace restful.Entitys
 | 
						|
{
 | 
						|
    public class Song
 | 
						|
    {
 | 
						|
 | 
						|
        [Column(IsIdentity = true)]
 | 
						|
        public int Id { get; set; }
 | 
						|
        public string Title { get; set; }
 | 
						|
    }
 | 
						|
}
 |