mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 00:08:29 +01:00
Upgraded Protobuf, and added api support for it
This commit is contained in:
parent
de74609784
commit
cb7f04e4d3
@@ -1,13 +1,23 @@
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user