-
Notifications
You must be signed in to change notification settings - Fork 0
/
Student.cs
35 lines (31 loc) · 1.17 KB
/
Student.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project
{
class Student
{
private string userName;
private string passWord;
private string selectGender;
private string selectAge;
private string fileContent;
private string name;
private string surname;
private string email;
public string UserName { get => userName; set => userName = value; }
public string PassWord { get => passWord; set => passWord = value; }
public string SelectGender { get => selectGender; set => selectGender = value; }
public string SelectAge { get => selectAge; set => selectAge = value; }
public string FileContent { get => fileContent; set => fileContent = value; }
public string Name { get => name; set => name = value; }
public string Surname { get => surname; set => surname = value; }
public string Email { get => email; set => email = value; }
}
class datastore
{
public static List<Student> data = new List<Student>();
}
}