2026-06-10 00:23:17 +01:00
|
|
|
using System;
|
2026-08-03 01:32:59 +01:00
|
|
|
using Yavsc.Abstract.Identity;
|
|
|
|
|
using Yavsc.Abstract.Identity.Security;
|
2026-06-10 00:23:17 +01:00
|
|
|
|
2026-08-17 23:45:45 +01:00
|
|
|
namespace Yavsc.Blogspot;
|
2026-06-10 00:23:17 +01:00
|
|
|
|
2026-08-03 01:32:59 +01:00
|
|
|
public class BlogPost : IBlogPost
|
2026-06-10 00:23:17 +01:00
|
|
|
{
|
2026-08-03 01:32:59 +01:00
|
|
|
public string AuthorId { get; set; }
|
|
|
|
|
|
|
|
|
|
public IApplicationUser Author { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Article { get; set ; }
|
|
|
|
|
public string Photo { get; set ; }
|
2026-08-17 23:45:45 +01:00
|
|
|
public long Id { get; set; }
|
|
|
|
|
public DateTime DateCreated { get; set; }
|
|
|
|
|
public string UserCreated { get; set; }
|
|
|
|
|
public DateTime DateModified { get; set; }
|
|
|
|
|
public string UserModified { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
2026-08-03 01:32:59 +01:00
|
|
|
|
|
|
|
|
public bool AuthorizeCircle(long circleId)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICircleAuthorization[] GetACL()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string[] GetTags()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2026-06-10 00:23:17 +01:00
|
|
|
}
|