Files
pgsql-jellyfin/MediaBrowser.Model/Dto/NameGuidPair.cs
T

19 lines
365 B
C#

// <copyright file="NameGuidPair.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#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; }
}
}