sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/CountryGroupDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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