17 lines
		
	
	
		
			391 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			391 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| using iPackage.Models.Entity;
 | |
| 
 | |
| namespace NugetTest.AspCore.Models
 | |
| {
 | |
|     public class Article : ApiEntity
 | |
|     {
 | |
|         public int ArticleId { get; set; }
 | |
|         public string Content { get; set; }
 | |
|         public int PersonId { get; set; }
 | |
|         public Person Person { get; set; }
 | |
|     }
 | |
| }
 |