Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/Models/JobModel.cs

14 lines
253 B
C#
Raw Normal View History

2021-10-22 12:41:04 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-10-30 18:48:58 +08:00
namespace Yi.Framework.Common.Models
2021-10-22 12:41:04 +08:00
{
2021-11-03 18:14:44 +08:00
public class JobModel
2021-10-22 12:41:04 +08:00
{
2021-10-30 18:48:58 +08:00
public static int visitNum { get; set; } = 0;
2021-10-22 12:41:04 +08:00
}
}