enotaryo-landing/EnotaryoPH/EnotaryoPH.Web/Mailables/OneTimePasswordViewModel.cs
2025-04-10 08:31:36 +01:00

12 lines
376 B
C#

namespace EnotaryoPH.Web.Mailables
{
public class OneTimePasswordViewModel
{
public string DocumentType { get; set; }
public string Email { get; set; }
public string LawyerName { get; set; }
public string MeetingRoomURL { get; set; }
public string OTP { get; set; }
public string ParticipantName { get; set; }
}
}