Created
February 11, 2017 14:09
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
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Office365ConnectorSDK | |
{ | |
public class PotentialAction | |
{ | |
public PotentialAction() | |
{ | |
context = "http://schema.org"; | |
type = "ViewAction"; | |
} | |
[JsonProperty(PropertyName = "@context")] | |
public string context { get; set; } | |
[JsonProperty(PropertyName = "@type")] | |
public string type { get; set; } | |
public string name { get; set; } | |
public List<string> target { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment