namespace Oqtane.Models
{
///
/// Culture information describing a Culture
///
public class Culture
{
///
/// Short code like `en` or `en-US`
///
public string Name { get; set; }
///
/// Nice name for the user, like `English (United States)`
///
public string DisplayName { get; set; }
///
/// Information if this is the default culture.
///
///
/// Not sure if this is actually valid, as ATM there is no setting to configure a _default_ culture
///
public bool IsDefault { get; set; }
}
}