12 lines
200 B
C#
12 lines
200 B
C#
namespace Oqtane.Models
|
|
{
|
|
public class Culture
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
public bool IsDefault { get; set; }
|
|
}
|
|
}
|