11 lines
No EOL
286 B
C#
11 lines
No EOL
286 B
C#
namespace SurveyLib.Core.Models;
|
|
|
|
public class Survey
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public ICollection<QuestionBase> Questions { get; set; }
|
|
public ICollection<Answer> Answers { get; set; }
|
|
} |