mirror of
https://github.com/nsnail/spectre.console.git
synced 2026-07-04 08:03:34 +08:00
52c1d9122b
* Use global usings * Fix namespace declarations for test projects
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; }
|
|
} |