User authentication is functional

This commit is contained in:
kdeng00
2023-09-29 06:44:11 -04:00
parent bc31f033fc
commit 145eea8e92
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ using TextSender_API.Repositories;
public class BaseRepository
{
#region Fields
protected string _connectionString;
protected string? _connectionString;
protected string _databaseName = "textSender";
protected string _tableName;
protected string? _tableName;
#endregion
}