forked from ddrilling/AsbCloudServer
11 lines
260 B
C#
11 lines
260 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class ReportProgressDto
|
|||
|
{
|
|||
|
public float Progress { get; set; }
|
|||
|
public string Operation { get; set; }
|
|||
|
public int CurrentPage { get; set; }
|
|||
|
public int TotalPages { get; set; }
|
|||
|
}
|
|||
|
}
|