19 lines
404 B
C#
19 lines
404 B
C#
// <copyright file="PlaylistCreationResult.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Playlists
|
|
{
|
|
public class PlaylistCreationResult
|
|
{
|
|
public PlaylistCreationResult(string id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public string Id { get; }
|
|
}
|
|
}
|