mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-12-29 12:05:47 +08:00
Use file scoped namespace declarations
This commit is contained in:
committed by
Phil Scott
parent
1dbaf50935
commit
ec1188b837
@@ -1,15 +1,14 @@
|
||||
using System.Globalization;
|
||||
|
||||
namespace Spectre.Console
|
||||
namespace Spectre.Console;
|
||||
|
||||
/// <summary>
|
||||
/// Represents something that has a culture.
|
||||
/// </summary>
|
||||
public interface IHasCulture
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents something that has a culture.
|
||||
/// Gets or sets the culture.
|
||||
/// </summary>
|
||||
public interface IHasCulture
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the culture.
|
||||
/// </summary>
|
||||
CultureInfo? Culture { get; set; }
|
||||
}
|
||||
}
|
||||
CultureInfo? Culture { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user