11 lines
		
	
	
		
			285 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			285 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace PaydayFrontend.Models;
 | |
| 
 | |
| public class Direction
 | |
| {
 | |
|     public long Id { get; set; }
 | |
|     public long UniversityId { get; set; }
 | |
|     public string Code { get; set; }
 | |
|     public string Name { get; set; }
 | |
|     public string Url { get; set; }
 | |
|     public int PlaceCost { get; set; }
 | |
| } |