- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataStruct.cs
More file actions
Latest commit
27 lines (26 loc) · 560 Bytes
/
Copy pathDataStruct.cs
File metadata and controls
27 lines (26 loc) · 560 Bytes
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
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceDatabaseLib
{
internalclassDataStruct
{
publicuintacctNo;
publicuintpin;
publicintbalance;
publicstringfirstName;
publicstringlastName;
publicstringimage;
publicDataStruct()
{
acctNo=0;
pin=0;
balance=0;
firstName="";
lastName="";
image="";
}
}
}