chatbot/Chatbot.Domain/Entities/User.cs

10 lines
205 B
C#
Raw Normal View History

2020-06-06 18:29:20 +03:00
namespace Chatbot.Api.Domain.Entities
{
public class User
{
public int Id { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}