LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : namespace Cqrs.Repositories.Queries 2 : { 3 : public class SortParameter<TSortBy> 4 0 : { 5 : public enum SortParameterDirectionType 6 0 : { 7 : Ascending = 0, 8 : 9 : Descending = 2 10 : } 11 : 12 : public TSortBy SortBy { get; set; } 13 : 14 : public SortParameterDirectionType Direction { get; set; } 15 : } 16 : } |
Generated by: LCOV version 1.10 |