/// <summary> /// Initializes a new instance of the SINnerGroup class. /// </summary> public SINnerGroup(Guid?id = default(Guid?), Guid?myParentGroupId = default(Guid?), bool?isPublic = default(bool?), string groupCreatorUserName = default(string), SINnerGroupSetting mySettings = default(SINnerGroupSetting), string groupname = default(string), string passwordHash = default(string), string language = default(string), IList <SINnerGroup> myGroups = default(IList <SINnerGroup>), SINnerGroup myParentGroup = default(SINnerGroup), string myAdminIdentityRole = default(string)) { Id = id; MyParentGroupId = myParentGroupId; IsPublic = isPublic; GroupCreatorUserName = groupCreatorUserName; MySettings = mySettings; Groupname = groupname; PasswordHash = passwordHash; Language = language; MyGroups = myGroups; MyParentGroup = myParentGroup; MyAdminIdentityRole = myAdminIdentityRole; }
/// <summary> /// Initializes a new instance of the SINnerSearchGroup class. /// </summary> public SINnerSearchGroup(SINnerSearchGroup mySINSearchGroup = default(SINnerSearchGroup), string errorText = default(string), IList <SINnerSearchGroupMember> myMembers = default(IList <SINnerSearchGroupMember>), Guid?id = default(Guid?), Guid?myParentGroupId = default(Guid?), bool?isPublic = default(bool?), string gameMasterUsername = default(string), SINnerGroupSetting mySettings = default(SINnerGroupSetting), string groupname = default(string), string passwordHash = default(string), string language = default(string), IList <SINnerGroup> myGroups = default(IList <SINnerGroup>), SINnerGroup myParentGroup = default(SINnerGroup), string myAdminIdentityRole = default(string)) { MySINSearchGroup = mySINSearchGroup; ErrorText = errorText; MyMembers = myMembers; Id = id; MyParentGroupId = myParentGroupId; IsPublic = isPublic; GameMasterUsername = gameMasterUsername; MySettings = mySettings; Groupname = groupname; PasswordHash = passwordHash; Language = language; MyGroups = myGroups; MyParentGroup = myParentGroup; MyAdminIdentityRole = myAdminIdentityRole; }
/// <summary> /// Initializes a new instance of the SINnerGroup class. /// </summary> /// <param name="myAdminIdentityRole">Only users of the specified Role /// can join this group</param> public SINnerGroup(System.Guid?id = default(System.Guid?), System.Guid?myParentGroupId = default(System.Guid?), bool?isPublic = default(bool?), string groupCreatorUserName = default(string), SINnerGroupSetting mySettings = default(SINnerGroupSetting), string groupname = default(string), string passwordHash = default(string), bool?hasPassword = default(bool?), string description = default(string), string language = default(string), string myHash = default(string), IList <SINnerGroup> myGroups = default(IList <SINnerGroup>), string myAdminIdentityRole = default(string)) { Id = id; MyParentGroupId = myParentGroupId; IsPublic = isPublic; GroupCreatorUserName = groupCreatorUserName; MySettings = mySettings; Groupname = groupname; PasswordHash = passwordHash; HasPassword = hasPassword; Description = description; Language = language; MyHash = myHash; MyGroups = myGroups; MyAdminIdentityRole = myAdminIdentityRole; CustomInit(); }
/// <summary> /// Initializes a new instance of the SINnerSearchGroup class. /// </summary> public SINnerSearchGroup(IList <SINnerSearchGroup> mySINSearchGroups = default(IList <SINnerSearchGroup>), string errorText = default(string), IList <SINnerSearchGroupMember> myMembers = default(IList <SINnerSearchGroupMember>), Guid?id = default(Guid?), Guid?myParentGroupId = default(Guid?), bool?isPublic = default(bool?), string groupCreatorUserName = default(string), SINnerGroupSetting mySettings = default(SINnerGroupSetting), string groupname = default(string), string passwordHash = default(string), bool?hasPassword = default(bool?), string description = default(string), string language = default(string), IList <SINnerGroup> myGroups = default(IList <SINnerGroup>), string myAdminIdentityRole = default(string)) { MySINSearchGroups = mySINSearchGroups; ErrorText = errorText; MyMembers = myMembers; Id = id; MyParentGroupId = myParentGroupId; IsPublic = isPublic; GroupCreatorUserName = groupCreatorUserName; MySettings = mySettings; Groupname = groupname; PasswordHash = passwordHash; HasPassword = hasPassword; Description = description; Language = language; MyGroups = myGroups; MyAdminIdentityRole = myAdminIdentityRole; }