File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,10 @@ protected CSharpType(CSharpIdentifier identifier)
28
28
Identifier = identifier ?? throw new ArgumentNullException ( nameof ( identifier ) ) ;
29
29
}
30
30
31
- /// <summary>
32
- /// A summary used for an XML documentation comment.
33
- /// </summary>
31
+ /// <inheritdoc/>
34
32
public string ? Summary { get ; set ; }
35
33
36
- /// <summary>
37
- /// Attributes to apply to the type.
38
- /// </summary>
34
+ /// <inheritdoc/>
39
35
public List < CSharpAttribute > Attributes { get ; } = new List < CSharpAttribute > ( ) ;
40
36
41
37
/// <inheritdoc/>
Original file line number Diff line number Diff line change 1
1
// Copyright Bastian Eicher
2
2
// Licensed under the MIT License
3
3
4
+ using System . Collections . Generic ;
4
5
using Microsoft . CodeAnalysis . CSharp . Syntax ;
5
6
6
7
namespace NanoByte . CodeGeneration
@@ -15,6 +16,16 @@ public interface ICSharpType
15
16
/// </summary>
16
17
CSharpIdentifier Identifier { get ; }
17
18
19
+ /// <summary>
20
+ /// A summary used for an XML documentation comment.
21
+ /// </summary>
22
+ string ? Summary { get ; set ; }
23
+
24
+ /// <summary>
25
+ /// Attributes to apply to the type.
26
+ /// </summary>
27
+ List < CSharpAttribute > Attributes { get ; }
28
+
18
29
/// <summary>
19
30
/// Returns a Roslyn syntax for a file containing the type.
20
31
/// </summary>
You can’t perform that action at this time.
0 commit comments