API. Расписание для хоста в общем формате
This commit is contained in:
@@ -19,6 +19,6 @@ namespace PARR.DAL.Models
|
||||
|
||||
|
||||
public ICollection<ApplicationInHost> ApplicationsInHosts { get; set; } = new HashSet<ApplicationInHost>();
|
||||
public ICollection<Application> Applications { get;set; } = new HashSet<Application>();
|
||||
//public ICollection<Application> Applications { get;set; } = new HashSet<Application>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,5 +11,8 @@ namespace PARR.DAL.Models
|
||||
public DateTimeOffset? DateModified { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public string? Description { get; set; }
|
||||
|
||||
|
||||
public ICollection<ApplicationType> ApplicationTypes { get; set; } = new HashSet<ApplicationType>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,8 +22,8 @@ namespace PARR.DAL.Models
|
||||
public Guid? JobCategoryId { get; set; }
|
||||
[ForeignKey(nameof(JobCategoryId))]
|
||||
public JobCategory? JobCategorye { get; set; }
|
||||
|
||||
public Guid JobTypeId { get; set; }
|
||||
|
||||
public Guid? JobTypeId { get; set; }
|
||||
[ForeignKey(nameof(JobTypeId))]
|
||||
public JobType? JobType { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user