diff options
Diffstat (limited to 'src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs')
| -rw-r--r-- | src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs b/src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs index a17dfe31..6cf9dabb 100644 --- a/src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs +++ b/src/test/burn/ForTestingUseOnlyExtension/Symbols/ForTestingUseOnlyBundleSymbol.cs | |||
| @@ -11,7 +11,7 @@ namespace ForTestingUseOnly | |||
| 11 | ForTestingUseOnlySymbolDefinitionType.ForTestingUseOnlyBundle.ToString(), | 11 | ForTestingUseOnlySymbolDefinitionType.ForTestingUseOnlyBundle.ToString(), |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new IntermediateFieldDefinition(nameof(ForTestingUseOnlyBundleSymbolFields.BundleId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ForTestingUseOnlyBundleSymbolFields.BundleCode), IntermediateFieldType.String), |
| 15 | }, | 15 | }, |
| 16 | typeof(ForTestingUseOnlyBundleSymbol)); | 16 | typeof(ForTestingUseOnlyBundleSymbol)); |
| 17 | } | 17 | } |
| @@ -23,7 +23,7 @@ namespace ForTestingUseOnly.Symbols | |||
| 23 | 23 | ||
| 24 | public enum ForTestingUseOnlyBundleSymbolFields | 24 | public enum ForTestingUseOnlyBundleSymbolFields |
| 25 | { | 25 | { |
| 26 | BundleId, | 26 | BundleCode, |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | public class ForTestingUseOnlyBundleSymbol : IntermediateSymbol | 29 | public class ForTestingUseOnlyBundleSymbol : IntermediateSymbol |
| @@ -38,10 +38,10 @@ namespace ForTestingUseOnly.Symbols | |||
| 38 | 38 | ||
| 39 | public IntermediateField this[ForTestingUseOnlyBundleSymbolFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[ForTestingUseOnlyBundleSymbolFields index] => this.Fields[(int)index]; |
| 40 | 40 | ||
| 41 | public string BundleId | 41 | public string BundleCode |
| 42 | { | 42 | { |
| 43 | get => this.Fields[(int)ForTestingUseOnlyBundleSymbolFields.BundleId].AsString(); | 43 | get => this.Fields[(int)ForTestingUseOnlyBundleSymbolFields.BundleCode].AsString(); |
| 44 | set => this.Set((int)ForTestingUseOnlyBundleSymbolFields.BundleId, value); | 44 | set => this.Set((int)ForTestingUseOnlyBundleSymbolFields.BundleCode, value); |
| 45 | } | 45 | } |
| 46 | } | 46 | } |
| 47 | } | 47 | } |
