diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2014-01-12 09:31:24 +0000 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2014-01-12 09:31:24 +0000 |
| commit | 4058f8dc0a8b3443b19707fc02b4cec1697fa6ba (patch) | |
| tree | 7ea867b44e865ac7b6dcca0b154991965f25dace /MediaBrowser.Model/Session | |
| parent | c8a106f485ff7e340ee8ca67adac3351ec6a31b6 (diff) | |
Added DebuggerDisplay to some DTO objects
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index 50dd4da67..083d1ef79 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -1,10 +1,12 @@ -using MediaBrowser.Model.Entities; +using System.Diagnostics; +using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; using System.ComponentModel; namespace MediaBrowser.Model.Session { + [DebuggerDisplay("Client = {Client}, Username = {UserName}")] public class SessionInfoDto : INotifyPropertyChanged { /// <summary> |
