IKanbanSubscriberShell.cs 193 B

123456789
  1. namespace PRS.Mobile
  2. {
  3. public interface IKanbanSubscriberShell : IKanbanShell
  4. {
  5. bool IsManager { get; }
  6. bool IsEmployee { get; }
  7. bool IsObserver { get; }
  8. }
  9. }