* refactor sqlite into separate library * support mysql * fixes * sql fixes * cleanup * update changelog
7 lines
317 B
C#
7 lines
317 B
C#
namespace ErsatzTV;
|
|
|
|
public record Provider(string Name, string Assembly)
|
|
{
|
|
public static Provider Sqlite = new (nameof(Sqlite), typeof(Infrastructure.Sqlite.Marker).Assembly.GetName().Name!);
|
|
public static Provider MySql = new (nameof(MySql), typeof(Infrastructure.MySql.Marker).Assembly.GetName().Name!);
|
|
} |