16 lines
353 B
16 lines
353 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using AMESCoreStudio.WebApi.Models.AMES;
|
||
|
using AMESCoreStudio.WebApi.Models.BAS;
|
||
|
|
||
|
namespace AMESCoreStudio.Web.ViewModels.WHS
|
||
|
{
|
||
|
public class WHS020ViewModel
|
||
|
{
|
||
|
|
||
|
public IEnumerable<StandardWorkTime> StandardWorkTimes { get; set; }
|
||
|
}
|
||
|
}
|