feat: add gmail review decisions
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace JobTrackerApi.Models;
|
||||
|
||||
public sealed class GmailReviewDecision
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string OwnerUserId { get; set; } = "";
|
||||
public string ThreadId { get; set; } = "";
|
||||
public int? JobApplicationId { get; set; }
|
||||
public string Decision { get; set; } = "review"; // review, linked, rejected, suggested
|
||||
public string? Note { get; set; }
|
||||
public DateTimeOffset UpdatedAt { get; set; } = DateTimeOffset.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user