You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/开发版dev/Vue.NetCore/Vue.Net/VOL.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs

45 lines
1.1 KiB
C#

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace VOL.Core.ObjectActionValidator
{
public class ObjectModelValidatorState
{
public ObjectModelValidatorState()
{
this.Status = true;
}
public bool Status { get; set; }
public bool HasModelContent { get; set; }
public string Code { get; set; }
public string Message { get; set; }
}
public class ObjectValidatorResult
{
public ObjectValidatorResult()
{
}
public ObjectValidatorResult(bool status)
{
this.Status = status;
}
public ObjectValidatorResult OK(string message)
{
this.Status = true;
this.Message = message;
return this;
}
public ObjectValidatorResult Error(string message)
{
this.Status = false;
this.Message = message;
return this;
}
public bool Status { get; set; }
public string Message { get; set; }
}
}