Hacker News new | ask | show | jobs
by AaronFriel 2197 days ago
Who are you replying to? Is any of your elaboration related to this result type?

    class Result<T>
    {
      bool IsSuccess {get; set;}
      string Message {get; set;}
      T Data {get; set;}
    }
1 comments

Ah you're quite correct.