19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Hangfire;
|
|
|
|
namespace YuanXuan.IM.Common.Configs
|
|
{
|
|
public class HangFireSettings
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public int Db { get; set; } = 0;
|
|
public string cron { get; set; }
|
|
|
|
public static JobStorage hangfireStorage { get; set; }
|
|
}
|
|
}
|