using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPE.App.Web.Models { /// /// Used to capture response to various API methods that update or create data. /// public class MessageModel { public string Message { get; set; } } }