// Copyright (c) Arlo Godfrey. All Rights Reserved.
// Licensed under the GNU Lesser General Public License, Version 3.0 with additional terms.
// See the LICENSE, LICENSE.LESSER and LICENSE.ADDITIONAL files in the project root for more information.
using System;
namespace StrixMusic.Sdk.BaseModels
{
///
/// An that belongs to a playable collection.
///
public interface IPlayableCollectionItem : IPlayableBase, ICollectionItemBase, IAsyncDisposable
{
///
/// The date this item was added to a collection. If unknown, value is null.
///
///
/// This property has no counterpart "changed" events or supporting properties.
/// Since the item must be added to a collection for the data to change, a new instance with updated data would be used.
///
DateTime? AddedAt { get; }
}
}