using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace InstaVibe.Models { public class ResetPasswordViewModel { public string Email { get; set; } public string Token { get; set; } public string NewPassword { get; set; } public string ConfirmPassword { get; set; } } }