mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 21:16:48 +00:00
fix: mark FeedbackBase default constructor as obsolete
There are situations now where feedbacks in the feedback collection can be used to update things on UIs. If the feedback doesn't have a key, it can't be used for this purpose.
This commit is contained in:
parent
f0af9f8d19
commit
dc7f99e176
4 changed files with 59 additions and 47 deletions
|
|
@ -13,7 +13,7 @@ namespace PepperDash.Essentials.Core
|
|||
/// </summary>
|
||||
public class SerialFeedback : Feedback
|
||||
{
|
||||
public override string SerialValue { get { return _SerialValue; } }
|
||||
public override string SerialValue { get { return _SerialValue; } }
|
||||
string _SerialValue;
|
||||
|
||||
//public override eCueType Type { get { return eCueType.Serial; } }
|
||||
|
|
@ -25,6 +25,7 @@ namespace PepperDash.Essentials.Core
|
|||
|
||||
List<StringInputSig> LinkedInputSigs = new List<StringInputSig>();
|
||||
|
||||
[Obsolete("use constructor with Key parameter. This constructor will be removed in a future version")]
|
||||
public SerialFeedback()
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue