diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-19 17:56:11 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-19 17:56:11 +0300 |
| commit | 3fe33a685c3ca7a8730dacffa5357f77d7e76a96 (patch) | |
| tree | bbdb2e455ab851e6b350ec98d8eacf8eb5f3fafc /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects | |
| parent | 425a679e42f0b61f2f63d92955600cadbc698e1d (diff) | |
| download | Tango-3fe33a685c3ca7a8730dacffa5357f77d7e76a96.tar.gz Tango-3fe33a685c3ca7a8730dacffa5357f77d7e76a96.zip | |
Implemented sample dye navigation on PPC.
Fixed some issues with TangoIOC GetWhenAvailable.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects/JobNavigationObject.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects/JobNavigationObject.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects/JobNavigationObject.cs new file mode 100644 index 000000000..1807f8294 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/NavigationObjects/JobNavigationObject.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; + +namespace Tango.PPC.Jobs.NavigationObjects +{ + public class JobNavigationObject + { + public Job Job { get; set; } + public JobNavigationIntent Intent { get; set; } + } + + public enum JobNavigationIntent + { + Default, + SampleDye, + } +} |
