dorset-backend-testapplication/Models/Student_description.cs

16 lines
444 B
C#

using System.ComponentModel.DataAnnotations;
namespace TestApplication.Models
{
public class Student_description
{
[Key]
public int id { get; set; }
public int students_id { 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; }
}
}