erp-platform/api/src/Kurs.Platform.Application.Contracts/Contact/StateDto.cs

11 lines
251 B
C#
Raw Normal View History

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; }
}