view Library/LibrarySystem/Interfaces/IBook.cs @ 111:6cb8cd05ad6b

Remove automated tests
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 21:51:38 +0100
parents aef06698d9e2
children
line wrap: on
line source

namespace LibrarySystem.Interfaces
{
    public interface IBook : IPublication
    {
        string Id { get; }
    }
}