- using System;
- using InABox.Configuration;
- namespace PRS.Mobile
- {
- public class AssignmentModuleSettings : ILocalConfigurationSettings
- {
- public DateTime Date { get; set; }
- public AssignmentViewType View { get; set; }
- public Guid[] Employees { get; set; }
- public String TeamName { get; set; }
- public AssignmentLookupType LookupType { get; set; }
- }
- }
|