using System;
using GDZZ.Core;
namespace GDZZ.Application
{
///
/// 业务配置输出参数
///
public class ServiceConfigDto
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 配置名称
///
public string Name { get; set; }
///
/// 配置值
///
public string Value { get; set; }
}
}