Обновил api

This commit is contained in:
2023-07-29 21:30:18 +03:00
parent a43b371272
commit 2d31231c2e
7 changed files with 37 additions and 44 deletions

View File

@@ -0,0 +1,10 @@
namespace PaydayFrontend.Models;
public class University
{
public long Id { get; set; }
public string Name { get; set; }
public string FullName { get; set; }
public string ImageUrl { get; set; }
public long MinPlaceCost { get; set; }
}