4 lines
119 B
C#
4 lines
119 B
C#
namespace MVC_SimpleCRUD_Layered.Application.Models;
|
|
|
|
public record PagedList<T>(List<T> Data, PagingInfo PagingInfo);
|