deploy
Deploy restore contacts feature
fc06b79
raw
history blame contribute delete
431 Bytes
namespace ContactManagementAPI.Models
{
public class AdminHistoryEntry
{
public string ActionType { get; set; } = string.Empty;
public string EntityType { get; set; } = string.Empty;
public int? EntityId { get; set; }
public string Details { get; set; } = string.Empty;
public string PerformedBy { get; set; } = string.Empty;
public DateTime PerformedAt { get; set; }
}
}