using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace InstaVibe.Models { public class UserDisplayModel { public int UserId { get; set; } public string FullName { get; set; } public string Username { get; set; } public string ProfilePicture { get; set; } } }