Oliver Booth
0a9c2e82d5
CORS was "cors"ing some issues (heh). But also it is easier to maintain this way. Development was made much more difficult when I separated it. Combining it all also improves SEO
33 lines
899 B
C#
33 lines
899 B
C#
namespace OliverBooth.Data.Blog;
|
|
|
|
/// <summary>
|
|
/// Represents the author of a blog post.
|
|
/// </summary>
|
|
public interface IBlogAuthor
|
|
{
|
|
/// <summary>
|
|
/// Gets the URL of the author's avatar.
|
|
/// </summary>
|
|
/// <value>The URL of the author's avatar.</value>
|
|
Uri AvatarUrl { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the display name of the author.
|
|
/// </summary>
|
|
/// <value>The display name of the author.</value>
|
|
string DisplayName { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the unique identifier of the author.
|
|
/// </summary>
|
|
/// <value>The unique identifier of the author.</value>
|
|
Guid Id { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the URL of the author's avatar.
|
|
/// </summary>
|
|
/// <param name="size">The size of the avatar.</param>
|
|
/// <returns>The URL of the author's avatar.</returns>
|
|
Uri GetAvatarUrl(int size = 28);
|
|
}
|