Class ShiftEventProps
Namespace: TecnoPack.Scheduler.Models
Assembly: CO0002_Templ_FlowpackHMI_V00_26_M.dll
Represents the detailed properties of a single shift event.
public sealed class ShiftEventProps
Inheritance
object ← ShiftEventProps
Remarks
Used as the payload for shift-related events in scheduling or calendar views. Contains information such as the shift index, name, operator, production target, and batch code.
Properties
batchCode
Batch code associated with the shift, if any.
public string batchCode { get; set; }
Property Value
string
operatorName
Name of the operator assigned to this shift, if available.
public string operatorName { get; set; }
Property Value
string
shiftIndex
Index of the shift (e.g., 1 for first shift, 2 for second shift, etc.).
public int shiftIndex { get; set; }
Property Value
int
shiftName
Human-readable name of the shift (e.g., "Morning Shift").
public string shiftName { get; set; }
Property Value
string
targetProduction
Planned production target for this shift, if applicable.
public int? targetProduction { get; set; }
Property Value
int?