You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
484 B
24 lines
484 B
using ProtoBuf;
|
|
|
|
namespace MediaBrowser.Model.DTO
|
|
{
|
|
[ProtoContract]
|
|
public class AudioInfo
|
|
{
|
|
[ProtoMember(1)]
|
|
public int BitRate { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public int Channels { get; set; }
|
|
|
|
[ProtoMember(3)]
|
|
public string Artist { get; set; }
|
|
|
|
[ProtoMember(4)]
|
|
public string Album { get; set; }
|
|
|
|
[ProtoMember(5)]
|
|
public string AlbumArtist { get; set; }
|
|
}
|
|
}
|