32 lines
633 B
C#
32 lines
633 B
C#
|
using MyCode.Project.Infrastructure.Enumeration;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Dtos.Common
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 区域 数据传输对象
|
|||
|
/// </summary>
|
|||
|
public interface IRegionDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 省份
|
|||
|
/// </summary>
|
|||
|
Guid? State { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 城市
|
|||
|
/// </summary>
|
|||
|
Guid? City { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 区
|
|||
|
/// </summary>
|
|||
|
Guid? District { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 详细地址
|
|||
|
/// </summary>
|
|||
|
string Address { get; set; }
|
|||
|
}
|
|||
|
}
|