AudioInfo.cs 356 B

1234567891011121314
  1. 
  2. namespace MediaBrowser.Model.DTO
  3. {
  4. public class AudioInfo
  5. {
  6. public int BitRate { get; set; }
  7. public int Channels { get; set; }
  8. public string Artist { get; set; }
  9. public string Album { get; set; }
  10. public string AlbumArtist { get; set; }
  11. public string Composer { get; set; }
  12. }
  13. }