From f5d750465ec8ccb52b88efdb9c24cd966f535b44 Mon Sep 17 00:00:00 2001 From: bicijinlian <bicijinlian@163.com> Date: Wed, 28 Aug 2019 22:40:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E8=88=AC=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LinqStudy/Models/Person.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 LinqStudy/Models/Person.cs diff --git a/LinqStudy/Models/Person.cs b/LinqStudy/Models/Person.cs new file mode 100644 index 0000000..29e01e4 --- /dev/null +++ b/LinqStudy/Models/Person.cs @@ -0,0 +1,13 @@ +using System; + +namespace LinqStudy +{ + public class Person + { + public int Id{get;set;} + + public string Name{get;set;} + + public int Age{get;set;} + } +}