Files
Atomx/Atomx.Common/Models/CategoryLocalizedModel.cs
2025-12-25 18:43:30 +08:00

10 lines
224 B
C#

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