using Newtonsoft.Json; namespace AwsDotnetCsharp.Model { public class ContactUsModel { [JsonProperty("strName")] public string Name { get; set; } [JsonProperty("strSurname")] public string Surname { get; set; } [JsonProperty("strEmail")] public string Email { get; set; } [JsonProperty("idNumber")] public string IdNumber { get; set; } [JsonProperty("strTicketNumber")] public string TicketNumber { get; set; } [JsonProperty("strMessage")] public string Message { get; set; } [JsonProperty("strCaterogy")] public string Caterogy { get; set; } } }