ant-design-blazor/components/message/MessageBase.cs
zxyao 042694b96f feat: add component message (#128)
* feat: add component message

* fix: then interface and demo bugs

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-05-19 20:08:49 +08:00

15 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntBlazor
{
/// <summary>
///
/// </summary>
public class MessageBase : AntDomComponentBase
{
protected const string PrefixCls = "ant-message";
}
}