SquareDash/Library/PackageCache/com.unity.services.core@1.8.2/Runtime/Scheduler/ScheduledInvocation.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

14 lines
212 B
C#

using System;
namespace Unity.Services.Core.Scheduler.Internal
{
class ScheduledInvocation
{
public Action Action;
public DateTime InvocationTime;
public long ActionId;
}
}