|
|
@@ -16,9 +16,11 @@ namespace InABox.Core
|
|
|
public interface ICoreDigitalFormInstance : IBaseDigitalFormInstance
|
|
|
{
|
|
|
[Obsolete("Replaced with Form", true)]
|
|
|
+ [ObsoleteProperty(nameof(Form))]
|
|
|
QAFormLink QAForm { get; }
|
|
|
|
|
|
[Obsolete("Replaced with FormData", true)]
|
|
|
+ [ObsoleteProperty(nameof(FormData))]
|
|
|
string QAData { get; set; }
|
|
|
|
|
|
String Number { get; set; }
|
|
|
@@ -30,9 +32,11 @@ namespace InABox.Core
|
|
|
string? BlobData { get; set; }
|
|
|
|
|
|
[Obsolete("Replaced with FormCompleted", true)]
|
|
|
+ [ObsoleteProperty(nameof(FormCompleted))]
|
|
|
DateTime QACompleted { get; set; }
|
|
|
|
|
|
[Obsolete("Replaced with FormCompletedBy", true)]
|
|
|
+ [ObsoleteProperty(nameof(FormCompletedBy))]
|
|
|
UserLink QACompletedBy { get; }
|
|
|
|
|
|
UserLink FormCompletedBy { get; }
|