v3.0.0
v3.0.0
This commit is contained in:
17
CC.Yi/CC.Yi.Model/student.cs
Normal file
17
CC.Yi/CC.Yi.Model/student.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
|
||||
namespace CC.Yi.Model
|
||||
{
|
||||
public class student
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public List<prop> props { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user