You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Store/Entities/Audit.cs

39 lines
757 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Ombi.Store.Entities
{
[Table("Audit")]
public class Audit : Entity
{
public DateTime DateTime { get; set; }
public string Description { get; set; }
public AuditType AuditType { get; set; }
public AuditArea AuditArea { get; set; }
public string User { get; set; }
}
public enum AuditType
{
None,
Created,
Updated,
Deleted,
Approved,
Denied,
Success,
Fail,
Added
}
public enum AuditArea
{
Authentication,
User,
TvRequest,
MovieRequest,
}
}