This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2020-12-03 15:50:25 +03:00

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; }
}
}