sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/AiBots/AiBotDto.cs

12 lines
219 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.AiBots;
public class AiBotDto : FullAuditedEntityDto<Guid>
{
public string Name { get; set; }
2026-03-21 16:59:22 +00:00
public string ApiUrl { get; set; }
2026-02-24 20:44:16 +00:00
}