This commit is contained in:
sunkaixuan
2022-08-28 18:20:05 +08:00
parent a3b7d6403c
commit 64822134d9
39 changed files with 3386 additions and 0 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; }
}
}