29 lines
820 B
C#
29 lines
820 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Moshaverino.Web.Models
|
|
{
|
|
public enum HumenSex
|
|
{
|
|
Male,
|
|
Female
|
|
}
|
|
public class Student : Entity
|
|
{
|
|
public int StudentId { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Code { get; set; }
|
|
public HumenSex HumenSex { get; set; }
|
|
public string FullName { get; set; }
|
|
public string StudyField { get; set; }
|
|
public string StudyGrade { get; set; }
|
|
public string AverageNumber { get; set; }
|
|
public string FavoriteLesson { get; set; }
|
|
public string UnFavoriteLesson { get; set; }
|
|
public string FavoriteExam { get; set; }
|
|
public string AverageTaraz { get; set; }
|
|
}
|
|
}
|