Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
[Lib] add OpenDefaultApp event model in Solutions (#2349)
Browse files Browse the repository at this point in the history
* add OpenDefaultApp event model

* add access modifier

* add map and music uri

* rename MapUri to MapsUri
  • Loading branch information
KayMKM authored and ryanisgrig committed Oct 10, 2019
1 parent 5e41052 commit 6d9704a
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

namespace Microsoft.Bot.Builder.Solutions.Models
{
public class OpenDefaultApp
{
public string MeetingUri { get; set; }

public string TelephoneUri { get; set; }

public string MapsUri { get; set; }

public string MusicUri { get; set; }
}
}

0 comments on commit 6d9704a

Please sign in to comment.