14 lines
264 B
C#
14 lines
264 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Sozsoft.Platform.Identity;
|
|
|
|
public class VerifyAccountConfirmationCodeInputDto
|
|
{
|
|
[Required]
|
|
public Guid? UserId { get; set; }
|
|
|
|
[Required]
|
|
public string Token { get; set; }
|
|
}
|
|
|