mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
18 lines
323 B
C#
18 lines
323 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntBlazor
|
|||
|
{
|
|||
|
public class MessageGlobalConfig
|
|||
|
{
|
|||
|
public double Duration { get; set; } = 3;
|
|||
|
|
|||
|
public int MaxCount { get; set; }
|
|||
|
|
|||
|
public double Top { get; set; } = 24;
|
|||
|
|
|||
|
public bool Rtl { get; set; }
|
|||
|
}
|
|||
|
}
|