14 lines
346 B
C#
14 lines
346 B
C#
using Atomx.Common.Entities;
|
|
|
|
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class CountryModel:Country
|
|
{
|
|
/// <summary>
|
|
/// 语言
|
|
/// </summary>
|
|
public string LanguageId { get; set; } = string.Empty;
|
|
public List<LocalizedProperty> Localized { get; set; } = new List<LocalizedProperty>();
|
|
}
|
|
}
|