Skip to content

Commit

Permalink
Added Sort order in Questions
Browse files Browse the repository at this point in the history
  • Loading branch information
shilpigoel-goaco committed Oct 3, 2024
1 parent 3ed146f commit aedfe97
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public class FormQuestion : IEntityDate
public required Guid Guid { get; set; }
public required FormQuestion? NextQuestion { get; set; } = null;
public required FormQuestion? NextQuestionAlternative { get; set; } = null;
public required int SortOrder { get; set; } = 0;
public required FormSection Section { get; set; }
public required FormQuestionType Type { get; set; }
public required bool IsRequired { get; set; } = true;
Expand Down

0 comments on commit aedfe97

Please sign in to comment.