From 1e590d02fac0b76b2c6b5adf4eb473a3a322504e Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Wed, 15 Sep 2021 13:38:35 -0400 Subject: [PATCH] add prefix and suffix option for Setting --- MBS.Framework/Setting.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MBS.Framework/Setting.cs b/MBS.Framework/Setting.cs index 798a2f9..bef6723 100644 --- a/MBS.Framework/Setting.cs +++ b/MBS.Framework/Setting.cs @@ -51,6 +51,9 @@ namespace MBS.Framework /// true if this is required to have a value; otherwise, false. 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 {