mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
9 lines
183 B
C#
9 lines
183 B
C#
namespace Chatbot.Api.Domain.Models.Settings
|
|
{
|
|
public class Credentials
|
|
{
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|