Files
VAR.WebFormsCore/VAR.Focus.Web/Code/Entities/OperationStatus.cs
2015-06-26 02:23:21 +02:00

14 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace VAR.Focus.Web.Code.Entities
{
public class OperationStatus
{
public bool IsOK { get; set; }
public string Message { get; set; }
public string ReturnValue { get; set; }
}
}