1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using InABox.Core;
- namespace PRS.Mobile
- {
- public static class RetainedResults
- {
- public static bool IsFormRetained { get; set; }
- public static string CurrentFormName { get; set; }
- public static string RetainedFormName { get; set; }
- public static DigitalFormLayout LastDigitalFormLayout { get; set; }
- public static Dictionary<string, string> Results { get; set; }
- }
- }
|