sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Identity/VerifyAccountConfirmationCodeInputDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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; }
}