eventuser.cs
1.05 KB
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
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MoyaAdminLib
{
//"eventuserId":7019,"firstname":"Topi","lastname":"Kinnunen","login":"xxtopotxx","userId":4902,"nick":"xXtopotXx"},
/* {
"nick": "jkj",
"login": "jkj",
"eventuserId": 7913,
"userId": 219,
"firstname": "Juho",
"lastname": "Juopperi",
"birthday": "1984-08-02T00:00:00+03:00",
"gender": "MALE",
"phoneNumber": "+358405422321",
"streetAddress": "Kaitoväylä 14 A 1",
"zipCode": "90571",
"postOffice": ""
}*/
public class Eventuser
{
public int eventuserId;
public string firstname;
public string lastname;
public string login;
public string password;
public int userId;
public string nick;
public string email;
public string birthday;
public string gender;
public string phoneNumber;
public string streetAddress;
public string zipCode;
public string postOffice;
}
}