using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EnVisage.Models { public class IntergrationModel { [Required] [Display(Name = "API User ID")] public string UserID { get; set; } [Required] [Display(Name = "Password")] public string Pwd { get; set; } public string Id { get; set; } [Required] [Display(Name = "API URL")] public string URL { get; set; } } }