12 lines
		
	
	
		
			331 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			331 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.SQLServer.Entities;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| 
 | |
| namespace Core.Blueprint.DAL.SQLServer.Entities
 | |
| {
 | |
|     [Table("Samples")]
 | |
|     public class Sample : BaseSQLAdapter
 | |
|     {
 | |
|         public string Name { get; set; } = null!;
 | |
|         public string Description { get; set; } = null!;
 | |
|     }
 | |
| } | 
