選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
250B

  1. using System.Threading.Tasks;
  2. namespace Campaign_Tracker.Server.Seed;
  3. public interface ISeedService
  4. {
  5. Task SeedAsync(CancellationToken cancellationToken = default);
  6. Task<bool> IsSeededAsync(CancellationToken cancellationToken = default);
  7. }

Powered by TurnKey Linux.