20 lines
562 B
C#
20 lines
562 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Oqtane.Models;
|
|
|
|
namespace SZUAbsolventenverein.Module.ReportSystem.Models;
|
|
|
|
public class Reporting : IAuditable
|
|
{
|
|
[Key]
|
|
public int ReportingID { get; set; }
|
|
public int ModuleId { get; set; }
|
|
public int EntityId { get; set; }
|
|
public string Note { get; set; }
|
|
public string Reason { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
} |