websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/Account/PasswordResetPincodeModel.cs
2015-04-30 04:24:15 -07:00

12 lines
No EOL
322 B
C#

using System.ComponentModel.DataAnnotations;
using WebsitePanel.WebDavPortal.Models.Common;
namespace WebsitePanel.WebDavPortal.Models.Account
{
public class PasswordResetPincodeModel
{
[Required]
public string Sms { get; set; }
public bool IsTokenExist { get; set; }
}
}