mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
13 lines
272 B
C#
13 lines
272 B
C#
using System;
|
|
|
|
namespace Chatbot.Api.Domain.Entities
|
|
{
|
|
public class Bot
|
|
{
|
|
public Guid BotId { get; set; }
|
|
public string BotCode { get; set; }
|
|
public string BotName { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
}
|
|
}
|