namespace MediaBrowser.Model.Extensions { /// /// Class ModelExtensions /// static class ModelExtensions { /// /// Values the or default. /// /// The STR. /// The def. /// System.String. internal static string ValueOrDefault(this string str, string def = "") { return string.IsNullOrEmpty(str) ? def : str; } } }