40 lines
906 B
C#
Raw Normal View History

2025-10-11 18:25:59 +08:00
/*
* <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()
{
}
}
}