All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 24s
12 lines
332 B
C#
12 lines
332 B
C#
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; }
|
|
} |