Files
git.stella-ops.org/src/StellaOps.Feedser.Core/Jobs/JobLease.cs
master 304118b665
Some checks failed
Build Test Deploy / build-test (push) Has been cancelled
Build Test Deploy / docs (push) Has been cancelled
Build Test Deploy / deploy (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
commit and up
2025-10-07 08:33:54 +03:00

10 lines
224 B
C#

namespace StellaOps.Feedser.Core.Jobs;
public sealed record JobLease(
string Key,
string Holder,
DateTimeOffset AcquiredAt,
DateTimeOffset HeartbeatAt,
TimeSpan LeaseDuration,
DateTimeOffset TtlAt);