Files
Atomx/Atomx.Common/Models/CountryLocalizedModel.cs
2025-12-25 12:41:37 +08:00

10 lines
222 B
C#

using Atomx.Common.Entities;
namespace Atomx.Common.Models
{
public class CountryLocalizedModel : Country
{
public List<LocalizedProperty> Locales { get; set; } = new List<LocalizedProperty>();
}
}