44 lines
708 B
C#
44 lines
708 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model
|
|
{
|
|
public class SingleUniversityRequestView
|
|
{
|
|
public string UniversityName { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class SingleUniversityResponseView
|
|
{
|
|
|
|
public int Type { get; set; }
|
|
|
|
public string Rank { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class UniversityTreeDto
|
|
{
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
public string url { get; set; }
|
|
public bool checkd { get; set; }
|
|
|
|
|
|
public string FirstWord { get; set; }
|
|
|
|
}
|
|
|
|
}
|