aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageSize.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageSize.cs')
-rw-r--r--MediaBrowser.Model/Drawing/ImageSize.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageSize.cs b/MediaBrowser.Model/Drawing/ImageSize.cs
deleted file mode 100644
index 75591d83d1..0000000000
--- a/MediaBrowser.Model/Drawing/ImageSize.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-namespace MediaBrowser.Model.Drawing
-{
- /// <summary>
- /// Struct ImageSize
- /// </summary>
- public struct ImageDimensions
- {
- /// <summary>
- /// Gets or sets the height.
- /// </summary>
- /// <value>The height.</value>
- public int Height { get; set; }
-
- /// <summary>
- /// Gets or sets the width.
- /// </summary>
- /// <value>The width.</value>
- public int Width { get; set; }
-
- public bool Equals(ImageDimensions size)
- {
- return Width.Equals(size.Width) && Height.Equals(size.Height);
- }
-
- public override string ToString()
- {
- return string.Format("{0}-{1}", Width, Height);
- }
-
- public ImageDimensions(int width, int height)
- {
- Width = width;
- Height = height;
- }
- }
-}