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