Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Set Id with Private Setter
Browse files Browse the repository at this point in the history
  • Loading branch information
amhed committed Jul 24, 2015
1 parent d637500 commit e3a43b7
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ namespace BrightcoveMapiWrapper.Model.Items
public class BrightcoveCaptionSource : BrightcoveItem, IJavaScriptConvertable
{
/// <summary>
/// A Boolean indicating whether a CaptionSource is usable.
/// A number that uniquely identifies this CaptionSource object,
/// assigned by Video Cloud when this object is created.
/// </summary>
public bool Complete { get; private set; }
public long? Id { get; private set; }

/// <summary>
/// The name of the caption source, which will be displayed in the Media module.
/// A Boolean indicating whether or not this CaptionSource is hosted on a remote server,
/// as opposed to hosted by Brightcove.
/// </summary>
public string DisplayName { get; set; }
public bool IsRemote { get; private set; }

/// <summary>
/// A number that uniquely identifies this CaptionSource object,
/// assigned by Video Cloud when this object is created.
/// A Boolean indicating whether a CaptionSource is usable.
/// </summary>
public long? Id { get; set; }
public bool Complete { get; private set; }

/// <summary>
/// A Boolean indicating whether or not this CaptionSource is hosted on a remote server,
/// as opposed to hosted by Brightcove.
/// The name of the caption source, which will be displayed in the Media module.
/// </summary>
public bool IsRemote { get; private set; }
public string DisplayName { get; set; }

/// <summary>
/// The complete path to the file.
Expand Down

0 comments on commit e3a43b7

Please sign in to comment.