This commit is contained in:
Tom Laird-McConnell 2018-03-08 21:32:48 -08:00
Родитель 053e96f94e
Коммит 3fc3e38288
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,22 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
namespace Microsoft.Bot.Schema
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// Mention information (entity type: "mention")
/// </summary>
public partial class Mention : Entity
{
partial void CustomInit()
{
this.Type = "mention";
}
}
}