2019-07-21 02:54:16 +02:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
2018-03-26 19:27:29 +02:00
|
|
|
|
namespace Yavsc.ViewModels.Account
|
|
|
|
|
|
{
|
|
|
|
|
|
public class UnregisterViewModel
|
|
|
|
|
|
{
|
2019-07-21 02:54:16 +02:00
|
|
|
|
[Required]
|
2019-03-07 10:45:11 +00:00
|
|
|
|
public string UserId { get; set; }
|
2019-07-21 02:54:16 +02:00
|
|
|
|
|
2018-03-26 19:27:29 +02:00
|
|
|
|
public string ReturnUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|