view Library/LibrarySystem/Interfaces/IBook.cs @ 98:d0c2cac12376

Latest version
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 22:53:40 +0100
parents aef06698d9e2
children
line wrap: on
line source

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