ant-design-blazor/components/notification/NotificationBase.cs
zxyao 68d9743fe3 refactor(notification): using a common global container (#116)
* refactor: using a common global container

* refactor: notification remove instance
2020-05-16 16:52:44 +08:00

15 lines
274 B
C#

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