Advertisement
Guest User

Untitled

a guest
Sep 6th, 2014
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. namespace Test
  2. {
  3. public class Music
  4. {
  5. public string Artist { get; set; }
  6. public string Title { get; set; }
  7. public string Album { get; set; }
  8.  
  9. public Music(string artist, string title, string album)
  10. {
  11. this.Artist = artist;
  12. this.Title = title;
  13. this.Album = album;
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement