sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/AiBots/AiBotDto.cs
2026-03-21 19:59:22 +03:00

11 lines
219 B
C#

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