11 lines
No EOL
381 B
C#
11 lines
No EOL
381 B
C#
namespace SurveyLib.Core.Models;
|
||
|
||
public class QuestionBase
|
||
{
|
||
public int Id { get; set; } // TODO: А ведь их наверное много будет, вдруг int однажды не хватит...
|
||
public int SurveyId { get; set; }
|
||
public string Title { get; set; }
|
||
|
||
public Survey Survey { get; set; }
|
||
public ICollection<Answer> Answers { get; set; }
|
||
} |