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/EnumerationField.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs index f8bb98b9b..038055cb9 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs @@ -6,10 +6,24 @@ using System.Threading.Tasks; namespace Tango.CodeGeneration { + /// + /// Represents a single enumeration field. + /// public class EnumerationField { + /// + /// Gets or sets the field name. + /// public String Name { get; set; } + + /// + /// Gets or sets the value. + /// public int Value { get; set; } + + /// + /// Gets or sets an optional description. + /// public String Description { get; set; } } } -- cgit v1.3.1