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.
12 lines
376 B
12 lines
376 B
using ErsatzTV.Infrastructure.Sqlite; |
|
|
|
namespace ErsatzTV.Scanner; |
|
|
|
public record Provider(string Name, string Assembly) |
|
{ |
|
public static readonly Provider Sqlite = new(nameof(Sqlite), typeof(Marker).Assembly.GetName().Name!); |
|
|
|
public static readonly Provider MySql = new( |
|
nameof(MySql), |
|
typeof(Infrastructure.MySql.Marker).Assembly.GetName().Name!); |
|
}
|
|
|