11 lines
251 B
C#
11 lines
251 B
C#
|
|
using System;
|
||
|
|
using Volo.Abp.Application.Dtos;
|
||
|
|
|
||
|
|
namespace Kurs.Platform.Contacts;
|
||
|
|
|
||
|
|
public class StateDto : AuditedEntityDto<Guid>
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string Code { get; set; }
|
||
|
|
public string CountryCode { get; set; }
|
||
|
|
}
|