This commit is contained in:
2025-12-25 12:41:37 +08:00
parent 7b6ec9c1d8
commit f7bb6bb2dc
10 changed files with 363 additions and 109 deletions

View File

@@ -0,0 +1,9 @@
using Atomx.Common.Entities;
namespace Atomx.Common.Models
{
public class CountryLocalizedModel : Country
{
public List<LocalizedProperty> Locales { get; set; } = new List<LocalizedProperty>();
}
}