sharee.bike-App/TINKLib/Model/MiniSurvey/IMiniSurveyModel.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

20 lines
508 B
C#

using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
public interface IMiniSurveyModel
{
/// <summary> Holds the title of the mini survey. </summary>
string Title { get; set; }
/// <summary> Holds the sub title of the mini survey. </summary>
string Subtitle { get; set; }
/// <summary> Holds the footer of the mini survey. </summary>
string Footer { get; set; }
/// <summary> Holds the questions. </summary>
IDictionary<string, IQuestionModel> Questions { get; }
}
}