using System;
namespace MediaBrowser.Controller.Entities
{
///
/// Class ChildDefinition
///
public class ChildDefinition
{
///
/// Gets or sets the item id.
///
/// The item id.
public Guid ItemId { get; set; }
///
/// Gets or sets the type.
///
/// The type.
public string Type { get; set; }
}
}