13 lines
285 B
C#
13 lines
285 B
C#
|
|
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; }
|
|||
|
|
}
|