mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
68d9743fe3
* refactor: using a common global container * refactor: notification remove instance
15 lines
274 B
C#
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";
|
|
}
|
|
}
|