eventuser.cs 1012 Bytes
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 int userId;
        public string nick;
        public string birthday;
        public string gender;
        public string phoneNumber;
        public string streetAddress;
        public string zipCode;
        public string postOffice;
        
    }
}