aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/LyricProviderInfo.cs
blob: ea9c94185df54c9086eb59759abeb6aca2154000 (plain)
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; }
}