Add Job Listing Skills

This commit is contained in:
2025-08-01 21:32:56 -07:00
parent 5480af64f6
commit 2c4292da07
5 changed files with 107 additions and 4 deletions
+8
View File
@@ -13,9 +13,17 @@ namespace BoredCareers.Entities {
public string JobType { get; set; } = "";
public bool Remote { get; set; } = false;
public string Description { get; set; } = "";
public JobListingSkill[] Skills { get; set; } = [];
public DateTime CreatedTime { get; set; }
public DateTime ModifiedTime { get; set; }
public bool IsDeleted { get; set; } = false;
}
public class JobListingSkill {
public int? ID { get; set; } // PK
public int JobListingID { get; set; } // FK
public string Name { get; set; } = "";
public string Description { get; set; } = "";
}
}