add prefix and suffix option for Setting

This commit is contained in:
Michael Becker 2021-09-15 13:38:35 -04:00
parent c2c9347d6d
commit 1e590d02fa
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -51,6 +51,9 @@ namespace MBS.Framework
/// <value><c>true</c> if this <see cref="Setting" /> is required to have a value; otherwise, <c>false</c>.</value>
public bool Required { get; set; } = false;
public string Prefix { get; set; } = null;
public string Suffix { get; set; } = null;
public class SettingCollection
: System.Collections.ObjectModel.Collection<Setting>
{