mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 16:28:56 +01:00
Added DebuggerDisplay to some DTO objects
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
@@ -6,6 +7,7 @@ namespace MediaBrowser.Model.Entities
|
||||
/// <summary>
|
||||
/// This is a stub class containing only basic information about an item
|
||||
/// </summary>
|
||||
[DebuggerDisplay("Name = {Name}, ID = {Id}, Type = {Type}")]
|
||||
public class BaseItemInfo
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Class MediaStream
|
||||
/// </summary>
|
||||
[DebuggerDisplay("StreamType = {Type}")]
|
||||
public class MediaStream
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user