14 lines
No EOL
398 B
C#
14 lines
No EOL
398 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 DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public ICollection<QuestionBase> Questions { get; set; }
|
|
public ICollection<Completion> Completions { get; set; }
|
|
} |