Files
jellyfin-jellyfin-1/MediaBrowser.Model/Providers/LyricProviderInfo.cs
2024-02-26 05:09:40 -07:00

18 lines
359 B
C#

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; }
}