1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace JabbR.Client.Models 7 { 8 public class User 9 { 10 public string Name { get; set; } 11 public string Hash { get; set; } 12 public bool Active { get; set; } 13 public UserStatus Status { get; set; } 14 public string Note { get; set; } 15 public string AfkNote { get; set; } 16 public bool IsAfk { get; set; } 17 public string Flag { get; set; } 18 public string Country { get; set; } 19 public DateTime LastActivity { get; set; } 20 public bool IsAdmin { get; set; } 21 } 22 } 23