12 lines
No EOL
318 B
C#
12 lines
No EOL
318 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using WebsitePanel.WebDavPortal.Models.Common;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Models.Account
|
|
{
|
|
public class PasswordResetSmsModel
|
|
{
|
|
[Required]
|
|
public string Sms { get; set; }
|
|
public bool IsTokenExist { get; set; }
|
|
}
|
|
} |