R_Config.cs
447 字节
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace OnlineStore.LoadCSVLibrary
{
public class R_Config : Store_ConfigBase
{
public R_Config()
: base()
{
}
public R_Config(int id, string type, string filepath)
: base(id, type, filepath)
{
}
}
}