Files
caliverse_server/BrokerApiTest/Helper/ValueResult.cs
2025-05-01 07:20:41 +09:00

19 lines
341 B
C#

// namespace BrokerCore.Common;
//
// public class ValueResult<TValue>
// {
// public Result Result { get; init; }
// public TValue? Value { get; set; }
//
// public ValueResult()
// {
// Result = new Result();
// }
//
// public ValueResult(Result result, TValue? value)
// {
// Result = result;
// Value = value;
// }
// }