using System; namespace Sony.Filtr.AdminSearch.Models { public class SearchHistoryItemData { public string UserId { get; set; } public DateTime Timestamp { get; set; } public string SearchResultUri { get; set; } public string SearchTerm { get; set; } public SearchHistoryItemType SearchResultType { get; set; } public string PlaylistOwnerName { get; set; } } }