jellyfin/MediaBrowser.Controller/Entities/IHasId.cs
2015-06-01 13:07:55 -04:00

10 lines
130 B
C#

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