From 63044b0efd2c21ce0b371f92cf35b287c7dcc272 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Tue, 2 May 2017 11:23:55 +0200 Subject: [PATCH] moves IBlog to YavscLib --- Yavsc/Interfaces/IBlog.cs | 11 ----------- YavscLib/Blogspot/IBlog.cs | 8 +++----- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 Yavsc/Interfaces/IBlog.cs diff --git a/Yavsc/Interfaces/IBlog.cs b/Yavsc/Interfaces/IBlog.cs deleted file mode 100644 index 790df7c7..00000000 --- a/Yavsc/Interfaces/IBlog.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Yavsc.Interfaces -{ - public interface IBlog: IIdentified, IRating, ITitle, ILifeTime - - { - string AuthorId { get; set; } - string Content { get; set; } - string Photo { get; set; } - bool Visible { get; set; } - } -} \ No newline at end of file diff --git a/YavscLib/Blogspot/IBlog.cs b/YavscLib/Blogspot/IBlog.cs index 928cf17e..d840bd8a 100644 --- a/YavscLib/Blogspot/IBlog.cs +++ b/YavscLib/Blogspot/IBlog.cs @@ -1,15 +1,13 @@  +using YavscLib.Interfaces; + namespace YavscLib { - public interface IBlog : IBaseTrackedEntity + public interface IBlog : IBaseTrackedEntity, IIdentified, IRating, ITitle { string AuthorId { get; set; } string Content { get; set; } - long Id { get; set; } string Photo { get; set; } - - int Rate { get; set; } - string Title { get; set; } bool Visible { get; set; } } }