9 lines
182 B
C#
9 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; }
|
|
}
|