* Nouvel espace de noms: Yavsc.Interfaces * Nouvelle interface : ILifeTime * Factorisation
11 lines
271 B
C#
11 lines
271 B
C#
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; }
|
|
}
|
|
} |