Command Logs
This commit is contained in:
19
ReallifeGamemode.Database/Entities/Logs/CommandLogEntry.cs
Normal file
19
ReallifeGamemode.Database/Entities/Logs/CommandLogEntry.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user