2025-10-11 18:25:59 +08:00

40 lines
906 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* <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()
{
}
}
}