12 lines
287 B
C#
12 lines
287 B
C#
namespace PARR.API.Contracts.V1.Responses
|
|
{
|
|
public class JobGroupDistributionConfigResponse
|
|
{
|
|
public bool IsExcludeWeekends { get; set; }
|
|
|
|
public bool IsGroupingByWorkGroup { get; set; }
|
|
|
|
public DistributionPeriodResponse? Period { get; set; }
|
|
}
|
|
}
|