erp-platform/api/src/Kurs.Platform.Domain/Entities/Platform/AiBot.cs
Sedat ÖZTÜRK 3406bccb25 Bank ve Bank Account
- locale store dan kaldırıldı
- admin localstorage eklendi.
2025-10-02 13:08:48 +03:00

16 lines
263 B
C#

using System;
using Volo.Abp.Domain.Entities;
namespace Kurs.Platform.Entities;
public class AiBot : Entity<Guid>
{
public string BotName { get; set; }
public AiBot(Guid id, string botName)
{
Id = Id;
BotName = botName;
}
}