11 lines
366 B
C#
11 lines
366 B
C#
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; }
|
|
}
|
|
}
|