This commit is contained in:
SepehrYahyaee
2026-04-26 09:31:50 +03:30
parent 6c2d178686
commit 4f8cb43883
5 changed files with 37 additions and 2 deletions

View File

@@ -40,6 +40,10 @@ export class ClaimWorkflow {
@Prop({ type: Date })
lockedAt?: Date;
/** Lock expiry used by UI countdown (typically lockedAt + 15m). */
@Prop({ type: Date })
expiredAt?: Date;
@Prop({ type: ClaimActorLockSchema })
lockedBy?: ClaimActorLock;
}