mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
15 lines
252 B
C#
15 lines
252 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
|
{
|
|
public class PlaylistCreationResult
|
|
{
|
|
public PlaylistCreationResult(string id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public string Id { get; }
|
|
}
|
|
}
|