Created
November 6, 2018 19:47
-
-
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
This file contains hidden or 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
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