14 lines
319 B
C#
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; }
|
|
}
|
|
} |