Ejemplo n.º 1
0
        private static RomanizedSong ToRomanizedSong(Song song)
        {
            RomanizedSong s = new RomanizedSong
            {
                Title          = song.Title,
                Artist         = song.Artist,
                Album          = song.Album,
                FeaturedArtist = song.FeaturedArtist,
                Id             = song.Id
            };

            return(s);
        }
Ejemplo n.º 2
0
 public SongBundle()
 {
     Normal    = new Song();
     Romanized = new RomanizedSong();
 }
Ejemplo n.º 3
0
 public SongBundle(Song song, RomanizedSong romanized)
 {
     Normal    = song;
     Romanized = romanized;
 }