namespace w21library.classes.Intf { public interface IBook { string Uuid { get; set; } string Author { get; set; } string Name { get; set; } } }