mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00
12 lines
244 B
C#
12 lines
244 B
C#
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; }
|
|
} |