mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-02 13:34:44 +01:00
9 lines
154 B
C#
9 lines
154 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.Collections
|
|
{
|
|
public class CollectionCreationResult
|
|
{
|
|
public Guid Id { get; set; }
|
|
}
|
|
}
|