// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign
{
///
/// Confirm dialog locale
///
public class ConfirmLocale
{
///
/// OK button text
///
public string OkText { get; set; }
///
/// Cancel button text
///
public string CancelText { get; set; }
///
/// Yes button text
///
public string YesText { get; set; }
///
/// No button text
///
public string NoText { get; set; }
///
/// Retry button text
///
public string RetryText { get; set; }
///
/// Abort button text
///
public string AbortText { get; set; }
///
/// Ignore button text
///
public string IgnoreText { get; set; }
}
}