Mercurial > silverbladetech
view Library/LibrarySystem/Interfaces/IPublication.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 IPublication { string Author { get; } string ISBN { get; } IPublisher Publisher { get; } string Title { get; } } }