using System.Collections.Generic; using Neo.Afx.Services.Workflows.Entities; using Neo.LegitimateLicences.Common.ViewModels; using Neo.Afx.Admin.Security; namespace Neo.LegitimateLicences.Web.Models { public class ProfileModel : ResponsiveAppBaseModel { public List Settings { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string KnownAs { get; set; } public long? UserProfileDocID { get; set; } } }