AssignmentModuleSettings.cs 413 B

1234567891011121314
  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. public String TeamName { get; set; }
  11. public AssignmentLookupType LookupType { get; set; }
  12. }
  13. }