complete rollcallCase history details by employee

This commit is contained in:
2026-01-11 17:25:56 +03:30
parent 05d860795e
commit 8f6007835c
5 changed files with 136 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ namespace _0_Framework.Application;
public class PagedResult<T> where T : class
{
public int TotalCount { get; set; }
public List<T> List { get; set; }
public List<T> List { get; set; } = [];
}
public class PagedResult<T,TMeta>:PagedResult<T> where T : class
{