aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ImageSourceInfo.cs
blob: 6dc072431ca2379aa010354800a4c81308c4b1c1 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace MediaBrowser.Controller.Entities
{
    public class ImageSourceInfo
    {
        public Guid ImagePathMD5 { get; set; }
        public Guid ImageUrlMD5 { get; set; }
    }
}