40 lines
906 B
C#
40 lines
906 B
C#
/*
|
||
* <copyright>
|
||
Company="公司"
|
||
2020-2025
|
||
Author=JCH
|
||
Path=XiaoZhiSharp.Kernels.PushFactory.cs
|
||
* <copyright>
|
||
* --------------------------------------------------------------
|
||
* 机器名称:JCH
|
||
* 文件名:PushFactory.cs
|
||
* 版本号:V1.0.0.0
|
||
* 创建人:JCH
|
||
* 创建时间:2025/9/25 17:37:10
|
||
* 描述:
|
||
* --------------------------------------------------------------
|
||
* 修改时间:2025/9/25 17:37:10
|
||
* 修改人:JCH
|
||
* 版本号:V1.0.0.0
|
||
* 描述:
|
||
* --------------------------------------------------------------
|
||
*/
|
||
|
||
namespace XiaoZhiSharp.Kernels
|
||
{
|
||
public class PushFactory
|
||
{
|
||
public static PushFactory Push
|
||
{
|
||
get { return SingletonProvider<PushFactory>.Instance; }
|
||
}
|
||
|
||
public PushTimer PushTimer { get; } = new PushTimer();
|
||
|
||
public PushFactory()
|
||
{
|
||
|
||
}
|
||
}
|
||
}
|