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