aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/GameGenre.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameGenre.cs')
-rw-r--r--MediaBrowser.Controller/Entities/GameGenre.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/GameGenre.cs b/MediaBrowser.Controller/Entities/GameGenre.cs
index 7ae4f8f730..b34df2abde 100644
--- a/MediaBrowser.Controller/Entities/GameGenre.cs
+++ b/MediaBrowser.Controller/Entities/GameGenre.cs
@@ -1,6 +1,7 @@
using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
+using System.Runtime.Serialization;
namespace MediaBrowser.Controller.Entities
{
@@ -21,8 +22,10 @@ namespace MediaBrowser.Controller.Entities
return "GameGenre-" + Name;
}
+ [IgnoreDataMember]
public ItemByNameCounts ItemCounts { get; set; }
+ [IgnoreDataMember]
public Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
}
}