forked from microsoft/TemplateStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetadataInfo.cs
More file actions
37 lines (25 loc) · 943 Bytes
/
MetadataInfo.cs
File metadata and controls
37 lines (25 loc) · 943 Bytes
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Templates.Core
{
public class MetadataInfo
{
public string Name { get; set; }
public string DisplayName { get; set; }
public string Icon { get; set; }
public string Summary { get; set; }
public string Description { get; set; }
public string Author { get; set; }
public int Order { get; set; }
public string MetadataType { get; set; }
public string Licenses { get; set; }
public IEnumerable<TemplateLicense> LicenseTerms { get; set; }
public IEnumerable<string> Languages { get; set; }
}
}