Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScheduledInvocation.cs 212B

12345678910111213
  1. using System;
  2. namespace Unity.Services.Core.Scheduler.Internal
  3. {
  4. class ScheduledInvocation
  5. {
  6. public Action Action;
  7. public DateTime InvocationTime;
  8. public long ActionId;
  9. }
  10. }