fixes user's auto-deletion :-)

This commit is contained in:
Paul Schneider 2019-07-21 02:54:16 +02:00
commit 105f8c70c9
3 changed files with 6 additions and 1 deletions

View file

@ -1,8 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.ViewModels.Account
{
public class UnregisterViewModel
{
[Required]
public string UserId { get; set; }
public string ReturnUrl { get; set; }
}