using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyRecipes2.Shared { public class UserDto { public string Email { get; set; } public string Id { get; set; } public string Username { get; set; } public int? ProfileImageId { get; set; } public string ProfileImageUrl { get; set; } public string Bio { get; set; } public UserDto() { } } }