Added- AnalyticsController ResponsesController SurveyController UserController
14 lines
341 B
C#
14 lines
341 B
C#
using System;
|
|
|
|
namespace survey_beta.Models
|
|
{
|
|
public class Choice
|
|
{
|
|
public string? Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string? Letter { get; set; }
|
|
public string? Content { get; set; }
|
|
public string? QuestionId { get; set; }
|
|
public Question? Question { get; set; }
|
|
}
|
|
}
|