ProfileModel.cs 240 B

12345678910111213
  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 ProfileModel
  9. {
  10. public UserProfile profileDetail { get; set; }
  11. }
  12. }