11 lines
260 B
C#
11 lines
260 B
C#
|
|
namespace Kurs.MailQueue.Domain;
|
|||
|
|
|
|||
|
|
public static class MailQueueDbProperties
|
|||
|
|
{
|
|||
|
|
public static string DbTablePrefix { get; set; } = "P";
|
|||
|
|
|
|||
|
|
public static string? DbSchema { get; set; } = null;
|
|||
|
|
|
|||
|
|
public const string ConnectionStringName = "Default";
|
|||
|
|
}
|