Пример #1
0
 public UserInteractedEventArgs(UserInteractionStatus status, double diff, int index, object item)
 {
     Status = status;
     Diff   = diff;
     Index  = index;
     Item   = item;
 }
Пример #2
0
 public UserInteractedEventArgs(int index, double diff, UserInteractionStatus status)
 {
     Index  = index;
     Diff   = diff;
     Status = status;
 }