Created
September 26, 2019 08:15
-
-
Save gonzaloruizdevilla/ddf3224a4c8a5be0ad1cbb01ca509377 to your computer and use it in GitHub Desktop.
LuisModel
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
[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