12 lines
253 B
C#
12 lines
253 B
C#
namespace Umbraco.Cms.Core;
|
|
|
|
public static partial class Constants
|
|
{
|
|
public static class ProviderNames
|
|
{
|
|
public const string SQLLite = "Microsoft.Data.Sqlite";
|
|
|
|
public const string SQLServer = "Microsoft.Data.SqlClient";
|
|
}
|
|
}
|