-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
TemplateSpecVersionInfo.cs
38 lines (32 loc) · 1.48 KB
/
TemplateSpecVersionInfo.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
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.ResourceManager.Resources.Models
{
/// <summary> High-level information about a Template Spec version. </summary>
public partial class TemplateSpecVersionInfo
{
/// <summary> Initializes a new instance of TemplateSpecVersionInfo. </summary>
internal TemplateSpecVersionInfo()
{
}
/// <summary> Initializes a new instance of TemplateSpecVersionInfo. </summary>
/// <param name="description"> Template Spec version description. </param>
/// <param name="timeCreated"> The timestamp of when the version was created. </param>
/// <param name="timeModified"> The timestamp of when the version was last modified. </param>
internal TemplateSpecVersionInfo(string description, DateTimeOffset? timeCreated, DateTimeOffset? timeModified)
{
Description = description;
TimeCreated = timeCreated;
TimeModified = timeModified;
}
/// <summary> Template Spec version description. </summary>
public string Description { get; }
/// <summary> The timestamp of when the version was created. </summary>
public DateTimeOffset? TimeCreated { get; }
/// <summary> The timestamp of when the version was last modified. </summary>
public DateTimeOffset? TimeModified { get; }
}
}