//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.ClientLauncher;
///
/// The available mu online client screen resolutions.
///
public class ClientResolution
{
///
/// Initializes a new instance of the class.
///
public ClientResolution()
{
this.Index = 0;
this.Caption = string.Empty;
}
///
/// Initializes a new instance of the class.
///
/// The index.
/// The caption.
public ClientResolution(int index, string caption)
{
this.Index = index;
this.Caption = caption;
}
///
/// Gets the index.
///
public int Index { get; init; }
///
/// Gets the caption.
///
public string Caption { get; init; }
}