aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-01-09 18:26:22 +0100
committerBond_009 <bond.009@outlook.com>2020-01-09 18:26:22 +0100
commitb50c4938e19eaa4508dd9192bc63c3788c2fa3eb (patch)
treee8a29d7c1ecc22b20287a940d757d635b5208b00 /MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs
parenta1ca50fd5a74eafa6e609976d90cad42b54137e5 (diff)
parent162c1ac7b7fde0e4929cf262b0f275e3eb15524c (diff)
Merge branch 'master' into namingtests
Diffstat (limited to 'MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs')
-rw-r--r--MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs b/MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs
new file mode 100644
index 000000000..91ab34aab
--- /dev/null
+++ b/MediaBrowser.Controller/Persistence/MediaAttachmentQuery.cs
@@ -0,0 +1,20 @@
+using System;
+using MediaBrowser.Model.Entities;
+
+namespace MediaBrowser.Controller.Persistence
+{
+ public class MediaAttachmentQuery
+ {
+ /// <summary>
+ /// Gets or sets the index.
+ /// </summary>
+ /// <value>The index.</value>
+ public int? Index { get; set; }
+
+ /// <summary>
+ /// Gets or sets the item identifier.
+ /// </summary>
+ /// <value>The item identifier.</value>
+ public Guid ItemId { get; set; }
+ }
+}