mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-17 12:33:21 +08:00

This also cleans up the bar chart code slightly and fixes some minor bugs that were detected in related code. Closes #244
16 lines
316 B
C#
16 lines
316 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; }
|
|
}
|
|
}
|