12 lines
253 B
C#
12 lines
253 B
C#
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;
|
|
|
|
}
|
|
}
|