diff options
Diffstat (limited to 'MediaBrowser.Controller/Entities/ChildDefinition.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/ChildDefinition.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/ChildDefinition.cs b/MediaBrowser.Controller/Entities/ChildDefinition.cs new file mode 100644 index 000000000..e8d68b5ea --- /dev/null +++ b/MediaBrowser.Controller/Entities/ChildDefinition.cs @@ -0,0 +1,22 @@ +using System; + +namespace MediaBrowser.Controller.Entities +{ + /// <summary> + /// Class ChildDefinition + /// </summary> + public class ChildDefinition + { + /// <summary> + /// Gets or sets the item id. + /// </summary> + /// <value>The item id.</value> + public Guid ItemId { get; set; } + + /// <summary> + /// Gets or sets the type. + /// </summary> + /// <value>The type.</value> + public string Type { get; set; } + } +} |
