11 lines
340 B
C#
11 lines
340 B
C#
namespace Web.ViewModel.QuestionnaireVM
|
|
{
|
|
public class ResponseAnswerViewModel
|
|
{
|
|
public int Id { get; set; } // Answer ID
|
|
public string? Text { get; set; } // Answer text
|
|
|
|
public int? Count { get; set; }
|
|
public string? ConditionJson { get; set; } // Add this line for conditional logic
|
|
}
|
|
}
|