BS 0.0.1 新构象

This commit is contained in:
ninemine
2025-06-25 14:36:19 +08:00
parent cc986d2c1f
commit 8996d73a9f
3 changed files with 267 additions and 29 deletions

View File

@@ -6,34 +6,5 @@ using System.Threading.Tasks;
namespace Convention
{
namespace SAL
{
public interface IHasCheckMethod
{
bool Check();
}
public class ReturnValue { }
public enum ComparedFlag
{
Greater, Less, Equal, GreaterOrEqual, LessOrEqual, NotEqual
}
[System.AttributeUsage(AttributeTargets.ReturnValue, Inherited = true, AllowMultiple = true)]
public sealed class SuccessAttribute : Attribute, IHasCheckMethod
{
private List<object> exprs = new();
public bool Check()
{
throw new NotImplementedException();
}
}
}
public static class PlatformIndictaor
{
}
}