using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Operater.Common.Filter
|
{
|
public class FilterResponseMsg
|
{
|
public bool success { get; set; }
|
|
public FilterErrorMsg error { get; set; }
|
}
|
|
public class FilterErrorMsg
|
{
|
public string code { get; set; }
|
|
public string message { get; set; }
|
}
|
|
|
}
|