Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Sep 13, 2024
2 parents d8677ee + 66aa544 commit a138118
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ public class DropDownInputProps : QuestionProps
[JsonProperty("inputType")]
public override string InputType => InputTypes.Dropdown;

[JsonProperty("text")]
public string Text { get; set; } = string.Empty;

[JsonProperty("placeholder")]
public string Placeholder { get; set; } = null;
[JsonProperty("paragraph")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using EAVFW.Extensions.QuickForm.Models.Questions;
using EAVFW.Extensions.QuickForm.Models.Questions;
using Newtonsoft.Json;

namespace EAVFW.Extensions.QuickForm.Models
Expand All @@ -8,8 +8,7 @@ public class MultilineTextInputProps : QuestionProps
[JsonProperty("inputType")]
public override string InputType => InputTypes.MultilineText;

[JsonProperty("text")]
public string Text { get; set; }


[JsonProperty("placeholder")]
public string Placeholder { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ public abstract class QuestionProps
[JsonProperty("schemaName")]
public string SchemaName { get; set; }

[JsonProperty("displayName")]
public string DisplayName { get; set; }

[JsonProperty("text")]
public string Text { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ public class TextInputProps : QuestionProps
[JsonProperty("inputType")]
public override string InputType => InputTypes.Text;

[JsonProperty("text")]
public string Text { get; set; }

[JsonProperty("placeholder")]
public string Placeholder { get; set; }
[JsonProperty("paragraph")]
Expand Down

0 comments on commit a138118

Please sign in to comment.