@@ -1,4 +1,4 @@ | |||||
using System; | |||||
using System; | |||||
using System.Collections.Generic; | using System.Collections.Generic; | ||||
using System.Linq; | using System.Linq; | ||||
using System.Text; | using System.Text; | ||||
@@ -9,7 +9,7 @@ namespace Discord | |||||
/// <summary> | /// <summary> | ||||
/// Represents an entry in an audit log | /// Represents an entry in an audit log | ||||
/// </summary> | /// </summary> | ||||
public interface IAuditLogEntry : IEntity<ulong> | |||||
public interface IAuditLogEntry : ISnowflakeEntity | |||||
{ | { | ||||
/// <summary> | /// <summary> | ||||
/// The action which occured to create this entry | /// The action which occured to create this entry | ||||
@@ -1,4 +1,5 @@ | |||||
using System.Linq; | |||||
using System; | |||||
using System.Linq; | |||||
using Model = Discord.API.AuditLog; | using Model = Discord.API.AuditLog; | ||||
using EntryModel = Discord.API.AuditLogEntry; | using EntryModel = Discord.API.AuditLogEntry; | ||||
@@ -26,6 +27,8 @@ namespace Discord.Rest | |||||
return new RestAuditLogEntry(discord, fullLog, model, user); | return new RestAuditLogEntry(discord, fullLog, model, user); | ||||
} | } | ||||
/// <inheritdoc/> | |||||
public DateTimeOffset CreatedAt => SnowflakeUtils.FromSnowflake(Id); | |||||
/// <inheritdoc/> | /// <inheritdoc/> | ||||
public ActionType Action { get; } | public ActionType Action { get; } | ||||
/// <inheritdoc/> | /// <inheritdoc/> | ||||