新生命X组件,数据中间件XCode、日志、网络、RPC、序列化、缓存、Windows服务 www.newlifex.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
488 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NewLife.Configuration;
namespace Test
{
public class ConfigTest : Config<ConfigTest>
{
public List<String> Names { get; set; }
public String Sex { get; set; }
public List<XYF> xyf { get; set; }
}
public class XYF
{
public String name { get; set; }
//public List<String> gradu { get; set; }
}
}