mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 18:25:44 +01:00
9 lines
130 B
C#
9 lines
130 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasId
|
|
{
|
|
Guid Id { get; }
|
|
}
|
|
}
|