sharee.bike-App/TINKLib/Model/MiniSurvey/IMiniSurveyModel.cs

20 lines
508 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
2022-09-06 16:08:19 +02:00
public interface IMiniSurveyModel
{
/// <summary> Holds the title of the mini survey. </summary>
string Title { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the sub title of the mini survey. </summary>
string Subtitle { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the footer of the mini survey. </summary>
string Footer { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the questions. </summary>
IDictionary<string, IQuestionModel> Questions { get; }
}
2022-08-30 15:42:25 +02:00
}