moved Question Variants to separate namespace
This commit is contained in:
parent
d52d8e332b
commit
58271df949
5 changed files with 8 additions and 7 deletions
|
|
@ -1,4 +1,4 @@
|
|||
namespace SurveyLib.Core.Models;
|
||||
namespace SurveyLib.Core.Models.QuestionVariants;
|
||||
|
||||
public class MultipleAnswerQuestion : QuestionBase
|
||||
{
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SurveyLib.Core.Models;
|
||||
namespace SurveyLib.Core.Models.QuestionVariants;
|
||||
|
||||
public class SingleAnswerQuestion : QuestionBase
|
||||
{
|
||||
5
SurveyLib.Core/Models/QuestionVariants/TextQuestion.cs
Normal file
5
SurveyLib.Core/Models/QuestionVariants/TextQuestion.cs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
namespace SurveyLib.Core.Models.QuestionVariants;
|
||||
|
||||
public class TextQuestion : QuestionBase
|
||||
{
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
namespace SurveyLib.Core.Models;
|
||||
|
||||
public class TextQuestion : QuestionBase
|
||||
{
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using SurveyLib.Core.Models;
|
||||
using SurveyLib.Core.Models.QuestionVariants;
|
||||
|
||||
namespace SurveyLib.Infrastructure.EFCore.Data;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue