IndividualModel.cs 289 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using NEducation.Code;
  6. namespace NEducation.Models
  7. {
  8. public class IndividualModel
  9. {
  10. public UserProfile profileDetail { get; set; }
  11. public History history { get; set; }
  12. }
  13. }