Ejemplo n.º 1
0
        public FizzGroupRepository(IFizzClient client, string groupTag)
        {
            Client   = client;
            GroupTag = groupTag;

            Groups       = new List <FizzGroupModel>();
            GroupInvites = new Dictionary <string, IFizzUserGroup>();
            groupLookup  = new Dictionary <string, FizzGroupModel>();
        }
Ejemplo n.º 2
0
        public FizzUserModel(IFizzUser userMeta, IFizzClient client)
        {
            Id            = userMeta.Id;
            Nick          = userMeta.Nick;
            StatusMessage = userMeta.StatusMessage;
            ProfileUrl    = userMeta.ProfileUrl;
            Online        = userMeta.Online;

            Client = client;
        }
Ejemplo n.º 3
0
 public FizzUserRepository(IFizzClient client)
 {
     Client = client;
     Users  = new Dictionary <string, FizzUserModel>();
 }