mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
10 lines
226 B
C#
10 lines
226 B
C#
using Streetwriters.Data.Interfaces;
|
|
|
|
namespace Streetwriters.Data
|
|
{
|
|
public class DbSettings : IDbSettings
|
|
{
|
|
public string DatabaseName { get; set; }
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
} |