Добавил обработку пустых запросов
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 24s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 24s
This commit is contained in:
12
PaydayFrontend/Models/Direction.cs
Normal file
12
PaydayFrontend/Models/Direction.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
public string UniversityName { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user