1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WebSocketServerSrez
- {
- class Users
- {
- public int Id { get; set; }
- public string LastName { get; set; }
- public string FirstName { get; set; }
- public string MiddleName { get; set; }
- public int IdPriliveleges { get; set; }
- }
- }
|