DocSpace-client/web/ASC.Web.Api/Models/WizardModel.cs

18 lines
843 B
C#
Raw Normal View History

2020-07-02 14:11:59 +00:00
namespace ASC.Web.Api.Models
{
public class WizardModel
{
public string Email { get; set; }
2020-09-18 14:45:59 +00:00
public string PasswordHash { get; set; }
2020-07-02 14:11:59 +00:00
public string Lng { get; set; }
2020-08-03 12:01:02 +00:00
public string TimeZone { get; set; }
2020-07-02 14:11:59 +00:00
public string Promocode { get; set; }
public string AmiId { get; set; }
public bool Analytics { get; set; }
2020-09-18 14:45:59 +00:00
public bool SubscribeFromSite { get; set; }
2020-07-02 14:11:59 +00:00
2020-09-18 14:45:59 +00:00
public void Deconstruct(out string email, out string passwordHash, out string lng, out string timeZone, out string promocode, out string amiid, out bool analytics, out bool subscribeFromSite)
=> (email, passwordHash, lng, timeZone, promocode, amiid, analytics, subscribeFromSite) = (Email, PasswordHash, Lng, TimeZone, Promocode, AmiId, Analytics, SubscribeFromSite);
2020-07-02 14:11:59 +00:00
}
}