Skip to content

Instantly share code, notes, and snippets.

@SkightTeam
Created March 30, 2012 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SkightTeam/2254878 to your computer and use it in GitHub Desktop.
Save SkightTeam/2254878 to your computer and use it in GitHub Desktop.
Domain --> POCO 考试类
namespace Skight.Demo.Domain.Examination
{
public class Exam
{
public virtual int Id { get; set; }
public virtual string Code { get; set; }
public virtual string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment