12 lines
358 B
C#
12 lines
358 B
C#
namespace InternshipSystem.Api.Queries
|
|
{
|
|
public class CurrentStudentForm
|
|
{
|
|
public int? AlbumNumber { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Email { get; set; }
|
|
public string Course { get; set; }
|
|
public int? Semester { get; set; }
|
|
}
|
|
} |