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