15 lines
416 B
C#
15 lines
416 B
C#
using TestApplication.Models;
|
|
|
|
namespace TestApplication.DTO
|
|
{
|
|
public class StudentDTO
|
|
{
|
|
public int Student_id { get; set; }
|
|
public string Student_grade { get; set; }
|
|
public int Age { get; set; }
|
|
public string First_name { get; set; }
|
|
public string Last_name { get; set; }
|
|
public string Address { get; set; }
|
|
public string Country { get; set; }
|
|
}
|
|
} |