Files
Atomx/Atomx.Admin/Atomx.Admin.Client/Models/CountryModel.cs
2025-12-25 12:41:37 +08:00

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