mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 23:42:36 -07:00
16 lines
316 B
C#
16 lines
316 B
C#
using System;
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
namespace PlexRequests.Store
|
|
{
|
|
[Table("Audit")]
|
|
public class Audit : Entity
|
|
{
|
|
public string Username{get;set;}
|
|
public DateTime Date {get;set;}
|
|
public string ChangeType {get;set;}
|
|
public string OldValue {get;set;}
|
|
public string NewValue{get;set;}
|
|
}
|
|
}
|
|
|