using System;
using System.Collections.Generic;
using infowi.se.Library.Items;
namespace infowi.se.Library
{
public class UserItems
{
public List<Bookmark> Bookmarks { get; private set; }
public List<Book> Books { get; private set; }
public List<CodeSnippet> CodeSnippets { get; private set; }
public List<Collection> Collections { get; private set; }
public List<Document> Documents { get; private set; }
public List<Event> Events { get; private set; }
public List<Image> Images { get; private set; }
public List<Location> Locations { get; private set; }
public List<Project> Projects { get; private set; }
public List<TextSnippet> TextSnippets { get; private set; }
/// <summary>
/// Adds the bookmark.
/// </summary>
/// <param name="bookmark">The bookmark.</param>
public void AddBookmark(Bookmark bookmark)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the book.
/// </summary>
/// <param name="book">The book.</param>
public void AddBook(Book book)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the code snippet.
/// </summary>
/// <param name="codeSnippet">The code snippet.</param>
public void AddCodeSnippet(CodeSnippet codeSnippet)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the collection.
/// </summary>
/// <param name="collection">The collection.</param>
public void AddCollection(Collection collection)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the document.
/// </summary>
/// <param name="document">The document.</param>
public void AddDocument(Document document)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the event.
/// </summary>
/// <param name="iwEvent">The event.</param>
public void AddEvent(Event iwEvent)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the image.
/// </summary>
/// <param name="image">The image.</param>
public void AddImage(Image image)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the location.
/// </summary>
/// <param name="location">The location.</param>
public void AddLocation(Location location)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the project.
/// </summary>
/// <param name="project">The project.</param>
public void AddProject(Project project)
{
throw new NotImplementedException();
}
/// <summary>
/// Adds the text snippet.
/// </summary>
/// <param name="textSnippet">The text snippet.</param>
public void AddTextSnippet(TextSnippet textSnippet)
{
throw new NotImplementedException();
}
/// <summary>
/// Uploads the asset.
/// </summary>
/// <param name="asset">The asset.</param>
public void UploadAsset(Asset asset)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the book.
/// </summary>
/// <param name="book">The book.</param>
public void DeleteBook(Book book)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the bookmark.
/// </summary>
/// <param name="bookmark">The bookmark.</param>
public void DeleteBookmark(Bookmark bookmark)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the code snippet.
/// </summary>
/// <param name="codeSnippet">The code snippet.</param>
public void DeleteCodeSnippet(CodeSnippet codeSnippet)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the collection.
/// </summary>
/// <param name="collection">The collection.</param>
public void DeleteCollection(Collection collection)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the document.
/// </summary>
/// <param name="document">The document.</param>
public void DeleteDocument(Document document)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the event.
/// </summary>
/// <param name="iwEvent">The event.</param>
public void DeleteEvent(Event iwEvent)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the image.
/// </summary>
/// <param name="image">The image.</param>
public void DeleteImage(Image image)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the location.
/// </summary>
/// <param name="location">The location.</param>
public void DeleteLocation(Location location)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the project.
/// </summary>
/// <param name="project">The project.</param>
public void DeleteProject(Project project)
{
throw new NotImplementedException();
}
/// <summary>
/// Deletes the text snippet.
/// </summary>
/// <param name="textSnippet">The text snippet.</param>
public void DeleteTextSnippet(TextSnippet textSnippet)
{
throw new NotImplementedException();
}
}
}