Initial commit
This commit is contained in:
10
C#/WebApplication/Logic/LogicResult/ILogicResult{T}.cs
Normal file
10
C#/WebApplication/Logic/LogicResult/ILogicResult{T}.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
public interface ILogicResult<T>
|
||||
{
|
||||
LogicResultState State { get; set; }
|
||||
|
||||
T Data { get; set; }
|
||||
|
||||
string Message { get; set; }
|
||||
|
||||
bool IsSuccessful { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user