mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
19 lines
508 B
C#
19 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; }
|
|
}
|
|
}
|