Skip to content

Instantly share code, notes, and snippets.

@msiddiqi
Created March 29, 2012 11:38
Show Gist options
  • Save msiddiqi/2236288 to your computer and use it in GitHub Desktop.
Save msiddiqi/2236288 to your computer and use it in GitHub Desktop.
namespace EFCodeFirstValidation.Entities.Validation.AssociateMetadata
{
class StudentAssociatedMetadata
{
[MinLength(3)]
public virtual string StudentFirstName { get; set; }
[Required]
public virtual string StudentLastName { get; set; }
[Range(1, 4)]
public virtual double GradePointAverage { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment