mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
* Added issuesreporting and the ability to add categories to the UI * Added lazy loading!
18 lines
No EOL
507 B
C#
18 lines
No EOL
507 B
C#
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; }
|
|
}
|
|
} |