You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
559 B
22 lines
559 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.BirthPlaces
|
|
{
|
|
public class UpdateBirthPlaceDto
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Required(ErrorMessage = "名称不能为空")]
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 国家标准码
|
|
/// </summary>
|
|
[Required(ErrorMessage = "国家标准码不能为空")]
|
|
public string CountryCode { get; set; }
|
|
}
|
|
}
|