SendFileResult.cs 462 B

123456789101112131415161718
  1. using MediaBrowser.Model.MediaInfo;
  2. namespace MediaBrowser.Controller.Sync
  3. {
  4. public class SendFileResult
  5. {
  6. /// <summary>
  7. /// Gets or sets the path.
  8. /// </summary>
  9. /// <value>The path.</value>
  10. public string Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets the protocol.
  13. /// </summary>
  14. /// <value>The protocol.</value>
  15. public MediaProtocol Protocol { get; set; }
  16. }
  17. }