Command Logs

This commit is contained in:
hydrant
2021-04-19 11:09:44 +02:00
parent a60f92f992
commit 3d5cf17761
6 changed files with 2117 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace ReallifeGamemode.Database.Entities.Logs
{
public class CommandLogEntry
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
public User User { get; set; }
public string Command { get; set; }
public DateTime Time { get; set; }
}
}