AssignmentModuleSettings.cs 305 B

123456789101112
  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 AssignmentView View { get; set; }
  9. public Guid[] Employees { get; set; }
  10. }
  11. }