10 lines
273 B
C#
10 lines
273 B
C#
namespace Kurs.Notifications.Domain;
|
|
|
|
public static class NotificationDbProperties
|
|
{
|
|
public static string DbTablePrefix { get; set; } = "P";
|
|
|
|
public static string? DbSchema { get; set; } = null;
|
|
|
|
public const string ConnectionStringName = "Notifications";
|
|
}
|