Skip to content

Instantly share code, notes, and snippets.

@UdaraAlwis
Created December 16, 2019 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UdaraAlwis/2da1d1e4f33e6cd59e33e887fefb9e2f to your computer and use it in GitHub Desktop.
Save UdaraAlwis/2da1d1e4f33e6cd59e33e887fefb9e2f to your computer and use it in GitHub Desktop.
An model class representing a Google Forms consisting all its possible properties...
/// <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