erp-platform/api/src/Kurs.Platform.Application.Contracts/AiBots/AiBotDto.cs
Sedat Öztürk 81ced25160 Düzenleme
2025-08-11 00:49:52 +03:00

9 lines
179 B
C#

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