Make DB id's nullable

This commit is contained in:
2025-07-30 22:01:02 -07:00
parent d5338d58c0
commit 47bc07e327
8 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
namespace BoredCareers.Entities {
public class JobListing {
public int ID { get; set; } // PK
public int? ID { get; set; } // PK
public int CompanyID { get; set; } // FK
public string Title { get; set; } = "";
public string PostalCode { get; set; } = "";