Add full stop at end of comments (SA1629)

This commit is contained in:
telans
2020-06-16 10:37:52 +12:00
parent 100e9d586d
commit 9018f8d8be
269 changed files with 816 additions and 816 deletions

View File

@@ -8,198 +8,198 @@ namespace MediaBrowser.Model.Querying
public enum ItemFields
{
/// <summary>
/// The air time
/// The air time.
/// </summary>
AirTime,
/// <summary>
/// The can delete
/// The can delete.
/// </summary>
CanDelete,
/// <summary>
/// The can download
/// The can download.
/// </summary>
CanDownload,
/// <summary>
/// The channel information
/// The channel information.
/// </summary>
ChannelInfo,
/// <summary>
/// The chapters
/// The chapters.
/// </summary>
Chapters,
ChildCount,
/// <summary>
/// The cumulative run time ticks
/// The cumulative run time ticks.
/// </summary>
CumulativeRunTimeTicks,
/// <summary>
/// The custom rating
/// The custom rating.
/// </summary>
CustomRating,
/// <summary>
/// The date created of the item
/// The date created of the item.
/// </summary>
DateCreated,
/// <summary>
/// The date last media added
/// The date last media added.
/// </summary>
DateLastMediaAdded,
/// <summary>
/// Item display preferences
/// Item display preferences.
/// </summary>
DisplayPreferencesId,
/// <summary>
/// The etag
/// The etag.
/// </summary>
Etag,
/// <summary>
/// The external urls
/// The external urls.
/// </summary>
ExternalUrls,
/// <summary>
/// Genres
/// Genres.
/// </summary>
Genres,
/// <summary>
/// The home page URL
/// The home page URL.
/// </summary>
HomePageUrl,
/// <summary>
/// The item counts
/// The item counts.
/// </summary>
ItemCounts,
/// <summary>
/// The media source count
/// The media source count.
/// </summary>
MediaSourceCount,
/// <summary>
/// The media versions
/// The media versions.
/// </summary>
MediaSources,
OriginalTitle,
/// <summary>
/// The item overview
/// The item overview.
/// </summary>
Overview,
/// <summary>
/// The id of the item's parent
/// The id of the item's parent.
/// </summary>
ParentId,
/// <summary>
/// The physical path of the item
/// The physical path of the item.
/// </summary>
Path,
/// <summary>
/// The list of people for the item
/// The list of people for the item.
/// </summary>
People,
PlayAccess,
/// <summary>
/// The production locations
/// The production locations.
/// </summary>
ProductionLocations,
/// <summary>
/// Imdb, tmdb, etc
/// Imdb, tmdb, etc.
/// </summary>
ProviderIds,
/// <summary>
/// The aspect ratio of the primary image
/// The aspect ratio of the primary image.
/// </summary>
PrimaryImageAspectRatio,
RecursiveItemCount,
/// <summary>
/// The settings
/// The settings.
/// </summary>
Settings,
/// <summary>
/// The screenshot image tags
/// The screenshot image tags.
/// </summary>
ScreenshotImageTags,
SeriesPrimaryImage,
/// <summary>
/// The series studio
/// The series studio.
/// </summary>
SeriesStudio,
/// <summary>
/// The sort name of the item
/// The sort name of the item.
/// </summary>
SortName,
/// <summary>
/// The special episode numbers
/// The special episode numbers.
/// </summary>
SpecialEpisodeNumbers,
/// <summary>
/// The studios of the item
/// The studios of the item.
/// </summary>
Studios,
BasicSyncInfo,
/// <summary>
/// The synchronize information
/// The synchronize information.
/// </summary>
SyncInfo,
/// <summary>
/// The taglines of the item
/// The taglines of the item.
/// </summary>
Taglines,
/// <summary>
/// The tags
/// The tags.
/// </summary>
Tags,
/// <summary>
/// The trailer url of the item
/// The trailer url of the item.
/// </summary>
RemoteTrailers,
/// <summary>
/// The media streams
/// The media streams.
/// </summary>
MediaStreams,
/// <summary>
/// The season user data
/// The season user data.
/// </summary>
SeasonUserData,
/// <summary>
/// The service name
/// The service name.
/// </summary>
ServiceName,
ThemeSongIds,

View File

@@ -3,7 +3,7 @@
namespace MediaBrowser.Model.Querying
{
/// <summary>
/// These represent sort orders that are known by the core
/// These represent sort orders that are known by the core.
/// </summary>
public static class ItemSortBy
{

View File

@@ -33,13 +33,13 @@ namespace MediaBrowser.Model.Querying
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// The maximum number of items to return.
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
/// <summary>
/// Fields to return within the items, in addition to basic information
/// Fields to return within the items, in addition to basic information.
/// </summary>
/// <value>The fields.</value>
public ItemFields[] Fields { get; set; }

View File

@@ -15,7 +15,7 @@ namespace MediaBrowser.Model.Querying
public IReadOnlyList<T> Items { get; set; }
/// <summary>
/// The total number of records available
/// The total number of records available.
/// </summary>
/// <value>The total record count.</value>
public int TotalRecordCount { get; set; }

View File

@@ -26,13 +26,13 @@ namespace MediaBrowser.Model.Querying
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// The maximum number of items to return.
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
/// <summary>
/// Fields to return within the items, in addition to basic information
/// Fields to return within the items, in addition to basic information.
/// </summary>
/// <value>The fields.</value>
public ItemFields[] Fields { get; set; }