-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathStreamingPathsResult.cs
37 lines (31 loc) · 1.44 KB
/
StreamingPathsResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
namespace Azure.ResourceManager.Media.Models
{
/// <summary> Class of response for listPaths action. </summary>
public partial class StreamingPathsResult
{
/// <summary> Initializes a new instance of StreamingPathsResult. </summary>
internal StreamingPathsResult()
{
StreamingPaths = new ChangeTrackingList<StreamingPath>();
DownloadPaths = new ChangeTrackingList<string>();
}
/// <summary> Initializes a new instance of StreamingPathsResult. </summary>
/// <param name="streamingPaths"> Streaming Paths supported by current Streaming Locator. </param>
/// <param name="downloadPaths"> Download Paths supported by current Streaming Locator. </param>
internal StreamingPathsResult(IReadOnlyList<StreamingPath> streamingPaths, IReadOnlyList<string> downloadPaths)
{
StreamingPaths = streamingPaths;
DownloadPaths = downloadPaths;
}
/// <summary> Streaming Paths supported by current Streaming Locator. </summary>
public IReadOnlyList<StreamingPath> StreamingPaths { get; }
/// <summary> Download Paths supported by current Streaming Locator. </summary>
public IReadOnlyList<string> DownloadPaths { get; }
}
}