This commit is contained in:
2025-12-26 23:57:51 +08:00
parent 43820c6ec2
commit e198ab93ed
8 changed files with 323 additions and 36 deletions

View File

@@ -0,0 +1,11 @@
using Atomx.Common.Entities;
namespace Atomx.Admin.Client.Models
{
public class AreaItem : Area
{
public string CountryName { get; set; } = string.Empty;
public string StateProvinceName { get; set; } = string.Empty;
}
}