moves IBlog to YavscLib
This commit is contained in:
@ -1,11 +0,0 @@
|
|||||||
namespace Yavsc.Interfaces
|
|
||||||
{
|
|
||||||
public interface IBlog: IIdentified<long>, IRating<long>, ITitle, ILifeTime
|
|
||||||
|
|
||||||
{
|
|
||||||
string AuthorId { get; set; }
|
|
||||||
string Content { get; set; }
|
|
||||||
string Photo { get; set; }
|
|
||||||
bool Visible { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +1,13 @@
|
|||||||
|
|
||||||
|
using YavscLib.Interfaces;
|
||||||
|
|
||||||
namespace YavscLib
|
namespace YavscLib
|
||||||
{
|
{
|
||||||
public interface IBlog : IBaseTrackedEntity
|
public interface IBlog : IBaseTrackedEntity, IIdentified<long>, IRating<long>, ITitle
|
||||||
{
|
{
|
||||||
string AuthorId { get; set; }
|
string AuthorId { get; set; }
|
||||||
string Content { get; set; }
|
string Content { get; set; }
|
||||||
long Id { get; set; }
|
|
||||||
string Photo { get; set; }
|
string Photo { get; set; }
|
||||||
|
|
||||||
int Rate { get; set; }
|
|
||||||
string Title { get; set; }
|
|
||||||
bool Visible { get; set; }
|
bool Visible { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user