21 lines
364 B
C#
21 lines
364 B
C#
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Services
|
|
{
|
|
/// <summary>
|
|
/// 配置服务中心
|
|
/// </summary>
|
|
public class ConfigService:BindableBase
|
|
{
|
|
public ConfigService()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|