This commit is contained in:
2020-06-11 22:59:48 +00:00
parent 1c92ba8e7f
commit 63b843fb54
2 changed files with 22 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
public class RequestTrial
{
[Required]
public Guid DbId { get; set; }
[Required, EmailAddress]
public string Email { get; set; }
[Required]
public string Company { get; set; }
[Required]
public string Contact { get; set; }
}
}