mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-24 12:12:51 +08:00
16 lines
315 B
C#
16 lines
315 B
C#
using System.Globalization;
|
|
|
|
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Represents something that has a culture.
|
|
/// </summary>
|
|
public interface IHasCulture
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the culture.
|
|
/// </summary>
|
|
CultureInfo Culture { get; set; }
|
|
}
|
|
}
|