mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 11:04:23 +00:00
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; }
|
|
}
|
|
}
|