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

10 lines
180 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.AiBots;
public class AiBotDto : FullAuditedEntityDto<Guid>
{
public string Name { get; set; }
}