13 lines
No EOL
335 B
C#
13 lines
No EOL
335 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 int? CreatedBy { get; set; }
|
|
|
|
public ICollection<QuestionBase> Questions { get; set; }
|
|
public ICollection<Completion> Completions { get; set; }
|
|
} |