using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
using System.ComponentModel.DataAnnotations;
namespace ContractService.LawFirm.Dto
{
///
/// 律所信息
///
[AutoMapTo(typeof(LawFirmInfo))]
public class LawFirmUpdateDto: EntityDto
{
[Required]
[StringLength(50)]
public string Name { get; set; }
public string DisplayName { get; set; }
[StringLength(500)]
public string Description { get; set; }
}
}