SurveyVista/Web/ViewModel/QuestionnaireVM/ResponseAnswerViewModel.cs
2025-08-11 11:28:32 +02:00

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
}
}