Moved a few classes into their own files

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-10 21:37:40 -04:00
parent 2467ca9668
commit 6c9ecb6d2e
5 changed files with 57 additions and 43 deletions

View 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; }
}
}