Class BlogArticle
Represents a blog article.
Inheritance
BlogArticle
Implements
Namespace: BiExcellence.OpenBi.Api.Commands.Blogs
Assembly: BiExcellence.OpenBi.Api.Blog.dll
Syntax
public class BlogArticle : IBlogArticle, ICustomAttributes
Constructors
BlogArticle()
Initializes a new instance of the BlogArticle class with a new id.
Declaration
public BlogArticle()
BlogArticle(string)
Initializes a new instance of the BlogArticle class.
Declaration
public BlogArticle(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The id. |
Properties
Author
Gets or sets the author.
Declaration
public string? Author { get; set; }
Property Value
Type | Description |
---|---|
string |
Changed
Gets or sets the changed date.
Declaration
public DateTimeOffset Changed { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Content
Gets or sets the content.
Declaration
public string? Content { get; set; }
Property Value
Type | Description |
---|---|
string |
Created
Gets or sets the created date.
Declaration
public DateTimeOffset Created { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
CustomAttributes
Gets or sets the custom attributes.
Declaration
public IDictionary<string, object?> CustomAttributes { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
Headline
Gets or sets the headline.
Declaration
public string? Headline { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the id.
Declaration
public string Id { get; protected set; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or sets the name.
Declaration
public string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Position
Gets or sets the position.
Declaration
public int Position { get; set; }
Property Value
Type | Description |
---|---|
int |
UrlPath
Gets or sets the url path.
Declaration
public string? UrlPath { get; set; }
Property Value
Type | Description |
---|---|
string |