mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
10 lines
205 B
C#
10 lines
205 B
C#
namespace Chatbot.Api.Domain.Entities
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|