Created
December 16, 2019 13:32
-
-
Save UdaraAlwis/2da1d1e4f33e6cd59e33e887fefb9e2f to your computer and use it in GitHub Desktop.
An model class representing a Google Forms consisting all its possible properties...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// A model representing a Google Form structure | |
/// consist of main the properties of a Google Form | |
/// </summary> | |
public class GoogleForm | |
{ | |
/// <summary> | |
/// Document Name of your Google Form | |
/// </summary> | |
public string FormDocName { get; set; } | |
/// <summary> | |
/// Form ID of your Google Form | |
/// </summary> | |
public string FormId { get; set; } | |
/// <summary> | |
/// Title of your Google Form | |
/// </summary> | |
public string Title { get; set; } | |
/// <summary> | |
/// Description of your Google Form | |
/// </summary> | |
public string Description { get; set; } | |
/// <summary> | |
/// List of Question Fields in your Google Form | |
/// </summary> | |
public List<GoogleFormField> QuestionFieldList { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment