jellyfin-smart-playlist/Jellyfin.Plugin.SmartPlaylist/SmartPlaylistDto.cs

12 lines
366 B
C#
Raw Normal View History

namespace Jellyfin.Plugin.SmartPlaylist {
[Serializable]
public class SmartPlaylistDto {
public SmartPlaylistId Id { get; set; }
public string Name { get; set; }
public string FileName { get; set; }
public UserId User { get; set; }
public string Program { get; set; }
public int MaxItems { get; set; }
}
}