Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Timer/MyActivities.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
namespace TemporalioSamples.Timer;

using System.Diagnostics.CodeAnalysis;
using Temporalio.Activities;

[SuppressMessage("Design", "CA1052:Type 'MyActivities' is a static holder type but is neither static nor NotInheritable", Justification = "Class is designed for instantiation.")]
public class MyActivities
{
[Activity]
Expand Down
1 change: 1 addition & 0 deletions src/Timer/Subscription.workflow.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
namespace TemporalioSamples.Timer;

using Microsoft.Extensions.Logging;
using Temporalio.Exceptions;
using Temporalio.Workflows;

[Workflow]
Expand Down
Loading