15 lines
488 B
C#
15 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
public class CustomizeWorkshopSettingsViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
|
|
public List<CustomizeWorkshopGroupSettingsViewModel> GroupSettings { get; set; }
|
|
public TimeOnly Offset { get; set; }
|
|
|
|
} |