using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
///
/// AntNotification全局配置
///
public class NotificationGlobalConfig
{
///
/// 消息从底部弹出时,距离底部的位置,单位像素。
///
public double? Bottom { get; set; } = null;
///
/// 消息从顶部弹出时,距离顶部的位置,单位像素。
///
public double? Top { get; set; } = null;
///
/// 是否开启 RTL 模式
///
public bool? Rtl { get; set; } = null;
///
/// 自定义关闭图标
///
public RenderFragment CloseIcon { get; set; } = null;
///
/// 自动关闭的延时,单位为秒。默认 4.5 秒后自动关闭,配置为 null 则不自动关闭
///
public double? Duration { get; set; } = null;
///
/// 弹出位置
///
public NotificationPlacement? Placement { get; set; } = null;
}
}