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.

OpResultList.cs 191B

1234567891011
  1. using System.Collections.Generic;
  2. namespace iiie.Logs.DBO
  3. {
  4. public class OpResultList<T> : OpResult<IEnumerable<T>>
  5. {
  6. protected OpResultList()
  7. {
  8. }
  9. }
  10. }