Подготовил направления

This commit is contained in:
2023-07-30 01:50:58 +03:00
parent 68f837b104
commit ad6e10250b
8 changed files with 974 additions and 18 deletions

View File

@ -0,0 +1,11 @@
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; }
}