From b9d17c9bc765a0c59d81db6277300a6860bf8421 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 1 Jan 2014 13:26:31 -0500 Subject: add more methods to file system interface --- MediaBrowser.Model/LiveTv/RecordingInfoDto.cs | 12 ++++++++++++ MediaBrowser.Model/LiveTv/RecordingQuery.cs | 6 ++++++ 2 files changed, 18 insertions(+) (limited to 'MediaBrowser.Model') diff --git a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs index 47accbec5..0ef5c9dc0 100644 --- a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs @@ -51,6 +51,18 @@ namespace MediaBrowser.Model.LiveTv /// public string Name { get; set; } + /// + /// Gets or sets the type of the location. + /// + /// The type of the location. + public LocationType LocationType { get; set; } + + /// + /// Gets or sets the media streams. + /// + /// The media streams. + public List MediaStreams { get; set; } + /// /// Gets or sets the path. /// diff --git a/MediaBrowser.Model/LiveTv/RecordingQuery.cs b/MediaBrowser.Model/LiveTv/RecordingQuery.cs index e63a250e6..731247672 100644 --- a/MediaBrowser.Model/LiveTv/RecordingQuery.cs +++ b/MediaBrowser.Model/LiveTv/RecordingQuery.cs @@ -40,6 +40,12 @@ /// /// The limit. public int? Limit { get; set; } + + /// + /// Gets or sets a value indicating whether this instance is recording. + /// + /// null if [is recording] contains no value, true if [is recording]; otherwise, false. + public bool? IsRecording { get; set; } } public class RecordingGroupQuery -- cgit v1.2.3