sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Identity/VerifyAccountConfirmationCodeInputDto.cs

15 lines
264 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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; }
}