namespace Oqtane.Models { /// /// Helper class for input fields in the setup of the SQL connection /// public class ConnectionStringField { /// /// Simple to understand field name / label /// public string FriendlyName { get; set; } /// /// Instructions / help for the user /// public string HelpText { get; set; } /// /// Property / Setting name which will be filled in by the user. Typically something like `Server`, `Port` etc. /// public string Name { get; set; } /// /// Initial value used in the UI and probably later also the user input that was given. /// public string Value { get; set; } } }