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

namespace MediaBrowser.Controller.Entities
{
    public interface IHasId
    {
        Guid Id { get; }
    }
}