// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace SampleGameBuild.NumbersQuiz.Data { public class MessageFromServerType { public const string Question = "Question"; public const string Result = "Result"; public const string Results = "Results"; } }