Ejemplo n.º 1
0
 // Token: 0x060000E1 RID: 225 RVA: 0x0000D420 File Offset: 0x0000B620
 public ClanView(int groupId, int membersCount, string description, string name, string motto, string address, DateTime foundingDate, string picture, GroupType type, DateTime lastUpdated, string tag, int membersLimit, GroupColor colorStyle, GroupFontStyle fontStyle, int applicationId, int ownerCmid, string ownerName, List <ClanMemberView> members) : base(groupId, membersCount, description, name, motto, address, foundingDate, picture, type, lastUpdated, tag, membersLimit, colorStyle, fontStyle, applicationId, ownerCmid, ownerName)
 {
     this.Members = members;
 }
 // Token: 0x06000063 RID: 99 RVA: 0x0000D090 File Offset: 0x0000B290
 public void SetClan(int groupId, int membersCount, string description, string name, string motto, string address, DateTime foundingDate, string picture, GroupType type, DateTime lastUpdated, string tag, int membersLimit, GroupColor colorStyle, GroupFontStyle fontStyle, int applicationId, int ownerCmid, string ownerName)
 {
     this.GroupId       = groupId;
     this.MembersCount  = membersCount;
     this.Description   = description;
     this.Name          = name;
     this.Motto         = motto;
     this.Address       = address;
     this.FoundingDate  = foundingDate;
     this.Picture       = picture;
     this.Type          = type;
     this.LastUpdated   = lastUpdated;
     this.Tag           = tag;
     this.MembersLimit  = membersLimit;
     this.ColorStyle    = colorStyle;
     this.FontStyle     = fontStyle;
     this.ApplicationId = applicationId;
     this.OwnerCmid     = ownerCmid;
     this.OwnerName     = ownerName;
 }