15 lines
492 B
C#
15 lines
492 B
C#
using TightWiki.Library;
|
|
using TightWiki.Models.DataModels;
|
|
|
|
namespace TightWiki.Models.ViewModels.Profile
|
|
{
|
|
public class AccountViewModel : ViewModelBase
|
|
{
|
|
public List<TimeZoneItem> TimeZones { get; set; } = new();
|
|
public List<CountryItem> Countries { get; set; } = new();
|
|
public List<LanguageItem> Languages { get; set; } = new();
|
|
public List<Role> Roles { get; set; } = new();
|
|
public AccountProfile Account { get; set; } = new();
|
|
}
|
|
}
|