eventuser.cs
489 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"},
public class Eventuser
{
public int eventuserId;
public string firstname;
public string lastname;
public string login;
public int userId;
public string nick;
}
}