From d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 8 Jan 2018 15:28:10 +0200 Subject: Added code comments for: CodeGeneration. Core. --- .../Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs index e49b7fa48..800513912 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs @@ -6,12 +6,25 @@ using System.Threading.Tasks; namespace Tango.CodeGeneration { + /// + /// Represents enumeration code file. + /// + /// public class EnumerationFile : CodeFile { + /// + /// Gets or sets enum the name. + /// public String Name { get; set; } + /// + /// Gets or sets the collection of enum fields. + /// public List Fields { get; set; } + /// + /// Initializes a new instance of the class. + /// public EnumerationFile() { Fields = new List(); -- cgit v1.3.1