namespace Selector.Model.Extensions { public static class ScrobbleExtensions { /// /// Helper to get the if possible, if not fall back to artist name /// /// /// public static string AlbumArtist(this Scrobble scrobble) => scrobble.AlbumArtistName ?? scrobble.ArtistName; } }