mirror of https://github.com/NewLifeX/X
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
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; }
|
|
}
|
|
}
|