AssignmentModuleSettings.cs 255 B

1234567891011
  1. using System;
  2. using InABox.Configuration;
  3. namespace comal.timesheets
  4. {
  5. public class AssignmentModuleSettings : LocalConfigurationSettings
  6. {
  7. public DateTime Date { get; set; }
  8. public Guid[] Employees { get; set; }
  9. }
  10. }