Add calendar control

Closes #101
This commit is contained in:
Patrik Svensson
2020-10-16 16:43:33 +02:00
committed by Patrik Svensson
parent 0a0380ae0a
commit 3f2ca49071
14 changed files with 833 additions and 1 deletions

View File

@ -0,0 +1,15 @@
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; }
}
}