mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 09:10:53 +08:00
18 lines
366 B
C#
18 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Model.Models
|
|
{
|
|
public class user
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
public int age { get; set; }
|
|
}
|
|
}
|