Add ToString to UserDto.cs

This commit is contained in:
Eric Reed 2013-05-29 11:25:39 -04:00
parent ccc8a12150
commit 683807c7e1
1 changed files with 5 additions and 0 deletions

View File

@ -80,5 +80,10 @@ namespace MediaBrowser.Model.Dto
/// Occurs when [property changed].
/// </summary>
public event PropertyChangedEventHandler PropertyChanged;
public override string ToString()
{
return Name ?? base.ToString();
}
}
}