AppReponse.cs
392 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DentalDecks.Server.Models
{
public class AppResponse
{
public bool successful;
public string message;
public AppResponse(bool successful, string message)
{
this.successful = successful;
this.message = message;
}
}
}