| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Services.Configuration
- {
- public class ConfigurationReferenceElement
- {
- /// <summary>
- /// Value
- /// </summary>
- public object Value { get; set; }
- /// <summary>
- /// Display text
- /// </summary>
- public string Text { get; set; }
- }
- }
|