// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using AmazonGameLiftPlugin.Core.Shared; namespace AmazonGameLiftPlugin.Core.CredentialManagement.Models { public class GetProfilesRequest { } public class GetProfilesResponse : Response { public IEnumerable Profiles { get; set; } } }