diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-20 12:44:24 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-20 12:44:24 -0400 |
| commit | 6bc263052d2b60abfd9023aed0640a37655b6e87 (patch) | |
| tree | 9802812f98e6d00954b82f7fc43f804460700525 /MediaBrowser.Controller/Entities/ChildDefinition.cs | |
| parent | 6f15aeccd0946f19145cc063a8982d585b77df91 (diff) | |
move child definitions to db
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; } + } +} |
