16 lines
389 B
C#
16 lines
389 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace EnotaryoPH.Web.Pages.Principal.NotaryoSteps
|
|
{
|
|
public class SignatoryViewModel
|
|
{
|
|
[EmailAddress, Required, BindProperty]
|
|
public string Email { get; set; }
|
|
|
|
[Required, BindProperty]
|
|
public string Type { get; set; }
|
|
|
|
public Guid UID { get; set; }
|
|
}
|
|
} |