Доделал вторую вкладку
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 8s

This commit is contained in:
2023-07-30 04:06:42 +03:00
parent 385f7dc6e7
commit 8a6f3ac806
10 changed files with 221 additions and 45 deletions

View File

@ -8,4 +8,5 @@ public class Direction
public string Name { get; set; }
public string Url { get; set; }
public int PlaceCost { get; set; }
public string UniversityName { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace PaydayFrontend.Models;
public class UniversityDirectionsViewModel
{
public University University { get; set; }
public List<Direction> Directions { get; set; }
}