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

19 lines
775 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; }
2020-09-18 14:45:59 +00:00
public bool SubscribeFromSite { get; set; }
2020-07-02 14:11:59 +00:00
2020-12-28 13:22:08 +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 subscribeFromSite)
2020-09-30 14:47:42 +00:00
{
2020-12-28 13:22:08 +00:00
(email, passwordHash, lng, timeZone, promocode, amiid, subscribeFromSite) = (Email, PasswordHash, Lng, TimeZone, Promocode, AmiId, SubscribeFromSite);
2020-09-30 14:47:42 +00:00
}
2020-07-02 14:11:59 +00:00
}
}