11 lines
232 B
C#
11 lines
232 B
C#
|
|
namespace TextSender_API.Repositories;
|
|
|
|
public class BaseRepository
|
|
{
|
|
#region Fields
|
|
protected string? _connectionString;
|
|
protected string _databaseName = "textSender";
|
|
protected string? _tableName;
|
|
#endregion
|
|
} |