9 lines
174 B
C#
9 lines
174 B
C#
namespace ScrapperAPI.Dtos;
|
|
|
|
public sealed record SessionOverviewDto(
|
|
int SessionId,
|
|
string Name,
|
|
bool IsRunning,
|
|
bool StopRequested,
|
|
QueueCounts Queue
|
|
); |