chatbot/Chatbot.Domain/Entities/Bot.cs

13 lines
272 B
C#
Raw Normal View History

2020-06-06 18:29:20 +03:00
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; }
}
}