using MemberCenter.Application.Models.Profile; namespace MemberCenter.Web.Models.Profile; public sealed class ProfileIndexPageViewModel { public ProfileViewModel Profile { get; set; } = new(); public IReadOnlyList Addresses { get; set; } = Array.Empty(); public bool IsEditing { get; set; } }