17 lines
404 B
C#
17 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeDepartmentDetailServices.Config
|
|
{
|
|
public class SystemConfig
|
|
{
|
|
public string zxdCoreApi { get; set; }
|
|
public string nodeWebApi { get; set; }
|
|
public string crmCoreApi { get; set; }
|
|
public int clearEDDHour { get; set; }
|
|
}
|
|
}
|