ResultPlain.cs 366 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace Quadarax.Foundation.Core.Data.Interface.Entity.Dto
  3. {
  4. public class ResultPlain : ResultDto
  5. {
  6. public override object GetValue()
  7. {
  8. return null;
  9. }
  10. public ResultPlain(){}
  11. public ResultPlain(IEnumerable<IError> errors) : base(errors)
  12. {
  13. }
  14. }
  15. }