diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
| commit | d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d (patch) | |
| tree | 1bcd27f1461650204ba2e7b340f271ce703b1a41 /Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs | |
| parent | 0ec56a54ca0c64a2f7ba402a1b99b3c217cd5ae5 (diff) | |
| download | Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.tar.gz Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.zip | |
Added code comments for:
CodeGeneration.
Core.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/EnumerationField.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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 { + /// <summary> + /// Represents a single enumeration field. + /// </summary> public class EnumerationField { + /// <summary> + /// Gets or sets the field name. + /// </summary> public String Name { get; set; } + + /// <summary> + /// Gets or sets the value. + /// </summary> public int Value { get; set; } + + /// <summary> + /// Gets or sets an optional description. + /// </summary> public String Description { get; set; } } } |
