mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-01 13:28:27 +01:00
Moved a few classes into their own files
This commit is contained in:
parent
2467ca9668
commit
6c9ecb6d2e
17
MediaBrowser.Model/Entities/SubtitleStream.cs
Normal file
17
MediaBrowser.Model/Entities/SubtitleStream.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using ProtoBuf;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
[ProtoContract]
|
||||
public class SubtitleStream
|
||||
{
|
||||
[ProtoMember(1)]
|
||||
public string Language { get; set; }
|
||||
|
||||
[ProtoMember(2)]
|
||||
public bool IsDefault { get; set; }
|
||||
|
||||
[ProtoMember(3)]
|
||||
public bool IsForced { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user