Bump BouncyCastle.Cryptography from 2.2.1 to 2.3.1 in /XUnitTest.Core (#142)
dependabot[bot] 编写于 2024-05-15 07:16:03 GitHub 提交于 2024-05-15 07:16:03
X
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; }
    }
}