Add Timestamps to joblisting

This commit is contained in:
2025-07-14 21:28:03 -07:00
parent b53c1493f7
commit 8e38778c6e
3 changed files with 199 additions and 7 deletions
+4 -1
View File
@@ -13,6 +13,9 @@ namespace BoredCareers.Entities {
public string JobType { get; set; } = "";
public bool Remote { get; set; } = false;
public string Description { get; set; } = "";
public DateTime CreatedTime { get; set; }
public DateTime ModifiedTime { get; set; }
public bool IsDeleted { get; set; } = false;
}
}