erp-platform/api/src/Erp.Platform.Application.Contracts/AiBots/AiBotDto.cs
2025-11-11 22:49:52 +03:00

10 lines
179 B
C#

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