Добавил обработку пустых запросов
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 24s

This commit is contained in:
2023-07-30 06:05:56 +03:00
parent 8e16dfe567
commit bfea515ec2
9 changed files with 89 additions and 23 deletions

View 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; }
}