Add Job Listing Skills
This commit is contained in:
@@ -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; } = "";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user