sharee.bike-App/SharedBusinessLogic/Model/MiniSurvey/IMiniSurveyModel.cs
2024-04-09 12:53:23 +02:00

20 lines
514 B
C#

using System.Collections.Generic;
namespace ShareeBike.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; }
}
}