First Commit

This commit is contained in:
cesnimda
2026-03-21 11:55:27 +01:00
commit 2e8a29b4d0
1757 changed files with 166084 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Text.Json.Serialization;
namespace JobTrackerApi.Models
{
public class JobEvent
{
public int Id { get; set; }
public int JobApplicationId { get; set; }
[JsonIgnore]
public JobApplication JobApplication { get; set; } = null!;
public string Type { get; set; } = ""; // Created, StatusChanged, FollowUpSet, Deleted, Restored
public string? OldValue { get; set; }
public string? NewValue { get; set; }
public string? Note { get; set; }
public DateTime At { get; set; } = DateTime.Now;
}
}