sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/AiBot.cs

13 lines
285 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Domain.Entities;
namespace Sozsoft.Platform.Entities;
public class AiBot : Entity<Guid>
{
public string Name { get; set; }
public string Description { get; set; }
public string ApiUrl { get; set; }
public bool IsActive { get; set; }
}