Browse Source

DocsDbProperties properties should be static

pull/1904/head
Halil İbrahim Kalkan 7 years ago
parent
commit
b7b40447ee
  1. 4
      modules/docs/src/Volo.Docs.Domain/Volo/Docs/DocsDbProperties.cs

4
modules/docs/src/Volo.Docs.Domain/Volo/Docs/DocsDbProperties.cs

@ -2,9 +2,9 @@
{
public static class DocsDbProperties
{
public const string DbTablePrefix = "Docs";
public static string DbTablePrefix { get; } = "Docs";
public const string DbSchema = null;
public static string DbSchema { get; } = null;
public const string ConnectionStringName = "Docs";
}

Loading…
Cancel
Save