16 lines
337 B
C#
16 lines
337 B
C#
// <copyright file="CollectionCreationResult.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace MediaBrowser.Model.Collections
|
|
{
|
|
public class CollectionCreationResult
|
|
{
|
|
public Guid Id { get; set; }
|
|
}
|
|
}
|