mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-29 00:03:04 +00:00
11 lines
290 B
C#
11 lines
290 B
C#
namespace Oqtane.Database.SqlServer
|
|
{
|
|
public class LocalDbDatabase : SqlServerDatabaseBase
|
|
{
|
|
private static string _friendlyName => "Local Database";
|
|
private static string _name => "LocalDB";
|
|
|
|
public LocalDbDatabase() :base(_name, _friendlyName) { }
|
|
}
|
|
}
|