12 lines
236 B
C#
Raw Normal View History

2025-08-15 15:25:44 +08:00
using System.Collections.Generic;
namespace DI_Electrical.Model
{
public class PageModel<T>
{
public List<T> Rows { get; set; }
public int Total { get; set; }
public int Records { get; set; }
}
}