using TightWiki.Library; using TightWiki.Models.DataModels; namespace TightWiki.Models.ViewModels.Profile { public class AccountViewModel : ViewModelBase { public List TimeZones { get; set; } = new(); public List Countries { get; set; } = new(); public List Languages { get; set; } = new(); public List Roles { get; set; } = new(); public AccountProfile Account { get; set; } = new(); } }