Files
Yi.Admin/CC.Yi/CC.Yi.Common/mongodb/model/student.cs

14 lines
231 B
C#
Raw Normal View History

2021-06-02 20:00:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace CC.Yi.Common.mongodb.model
{
public class student
{
public string sname { get; set; }
public string sex { get; set; }
}
}