1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
namespace MediaBrowser.Model.Providers; /// <summary> /// Lyric provider info. /// </summary> public class LyricProviderInfo { /// <summary> /// Gets the provider name. /// </summary> public required string Name { get; init; } /// <summary> /// Gets the provider id. /// </summary> public required string Id { get; init; } }