mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
325 B
7 lines
325 B
namespace ErsatzTV.Scanner; |
|
|
|
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!); |
|
} |