v3.0.0
v3.0.0
This commit is contained in:
17
CC.Yi/CC.Yi.Model/prop.cs
Normal file
17
CC.Yi/CC.Yi.Model/prop.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 prop
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public student student { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user