12 lines
376 B
C#
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; }
|
|
}
|
|
} |