10 lines
182 B
C#
10 lines
182 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Public;
|
|||
|
|
|
|||
|
|
public class CountryGroupDto : AuditedEntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|