Skip to content

Instantly share code, notes, and snippets.

@gonzaloruizdevilla
Created September 26, 2019 08:15
Show Gist options
  • Save gonzaloruizdevilla/ddf3224a4c8a5be0ad1cbb01ca509377 to your computer and use it in GitHub Desktop.
Save gonzaloruizdevilla/ddf3224a4c8a5be0ad1cbb01ca509377 to your computer and use it in GitHub Desktop.
LuisModel
[LuisModel("endpointID", "endpointPassword")]
[Serializable]
public class LUISDialog : LuisDialog<ProjectCreator> {
private readonly BuildFormDelegate<ProjectCreator> TouchProject;
private static string ConnectionName = ConfigurationManager.AppSettings["ConnectionName"];
public LUISDialog(BuildFormDelegate<ProjectCreator> touchProject) {
this.TouchProject = touchProject;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment