You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Result.cs 226B

123456789
  1. namespace BlackRock.Reporting.API.Models
  2. {
  3. public class Result<TData>
  4. {
  5. public bool IsSuccess { get; set; } = true;
  6. public string Error { get; set; }
  7. public TData? Data { get; set; }
  8. }
  9. }