using System.Globalization; namespace Spectre.Console { /// /// Represents something that has a culture. /// public interface IHasCulture { /// /// Gets or sets the culture. /// CultureInfo Culture { get; set; } } }