forked from microsoft/winget-cli-restsource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqlVersion.cs
More file actions
35 lines (32 loc) · 1.07 KB
/
SqlVersion.cs
File metadata and controls
35 lines (32 loc) · 1.07 KB
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
// -----------------------------------------------------------------------
// <copyright file="SqlVersion.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------
namespace Microsoft.WinGet.RestSource.Sql
{
/// <summary>
/// Sql version.
/// </summary>
internal class SqlVersion
{
/// <summary>
/// Initializes a new instance of the <see cref="SqlVersion"/> class.
/// </summary>
/// <param name="version">Version.</param>
/// <param name="pathPart">Path part.</param>
public SqlVersion(string version, string pathPart)
{
this.Version = version;
this.PathPart = pathPart;
}
/// <summary>
/// Gets the version.
/// </summary>
public string Version { get; private set; }
/// <summary>
/// Gets the path part.
/// </summary>
public string PathPart { get; private set; }
}
}