Update core

This commit is contained in:
sunkaixuan
2022-02-26 16:33:03 +08:00
parent 2ca2e6d579
commit a03960ca5f
40 changed files with 3126 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Custom
{
public int Id { get; set; }
public string Name { get; set; }
}
}