Skip to content

Instantly share code, notes, and snippets.

@vainolo
Created November 6, 2018 19:47
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 vainolo/c2bf9f4153b9deee9d3369048d9a8289 to your computer and use it in GitHub Desktop.
Save vainolo/c2bf9f4153b9deee9d3369048d9a8289 to your computer and use it in GitHub Desktop.
Azure Functions - Part 4: Working with Persistent Data and Visual Studio Code - 1
public class UserData
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }
public string Text { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment