mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-06 09:03:03 +03:00
15 lines
223 B
C#
15 lines
223 B
C#
|
|
#nullable disable
|
||
|
|
#pragma warning disable CS1591
|
||
|
|
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace MediaBrowser.Model.Dto
|
||
|
|
{
|
||
|
|
public class NameGuidPair
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
}
|
||
|
|
}
|