Aurora.Services.WebAPIHandler.GroupRecord2OSDMap C# (CSharp) Метод

GroupRecord2OSDMap() приватный статический Метод

private static GroupRecord2OSDMap ( Aurora.Framework.GroupRecord group ) : OSDMap
group Aurora.Framework.GroupRecord
Результат OSDMap
        private static OSDMap GroupRecord2OSDMap(GroupRecord group)
        {
            OSDMap resp = new OSDMap();
            resp["GroupID"] = group.GroupID;
            resp["GroupName"] = group.GroupName;
            resp["AllowPublish"] = group.AllowPublish;
            resp["MaturePublish"] = group.MaturePublish;
            resp["Charter"] = group.Charter;
            resp["FounderID"] = group.FounderID;
            resp["GroupPicture"] = group.GroupPicture;
            resp["MembershipFee"] = group.MembershipFee;
            resp["OpenEnrollment"] = group.OpenEnrollment;
            resp["OwnerRoleID"] = group.OwnerRoleID;
            resp["ShowInList"] = group.ShowInList;
            return resp;
        }