mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Add the Issue Reporting functionality (#1811)
* Added issuesreporting and the ability to add categories to the UI * Added lazy loading!
This commit is contained in:
parent
438f56eceb
commit
246f1c07cf
109 changed files with 2905 additions and 526 deletions
18
src/Ombi.Store/Entities/Requests/IssueComments.cs
Normal file
18
src/Ombi.Store/Entities/Requests/IssueComments.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Ombi.Store.Entities.Requests
|
||||
{
|
||||
public class IssueComments : Entity
|
||||
{
|
||||
public string UserId { get; set; }
|
||||
public string Comment { get; set; }
|
||||
public int? IssuesId { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
[ForeignKey(nameof(IssuesId))]
|
||||
public Issues Issues{ get; set; }
|
||||
[ForeignKey(nameof(UserId))]
|
||||
public OmbiUser User { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue