Interface IBlogArticle
Represents a blog article.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.Blogs
Assembly: BiExcellence.OpenBi.Api.Blog.dll
Syntax
[TableAttribute("SPCONTENTARTICLES")]
public interface IBlogArticle : ICustomAttributes
Properties
Author
Gets or sets the author.
Declaration
[ApiField("AUTHOR")]
string? Author { get; set; }
Property Value
Type | Description |
---|---|
string |
Changed
Gets or sets the changed date.
Declaration
[ApiField("CHANGED")]
DateTimeOffset Changed { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Content
Gets or sets the content.
Declaration
[ApiField("CONTENT")]
string? Content { get; set; }
Property Value
Type | Description |
---|---|
string |
Created
Gets or sets the created date.
Declaration
[ApiField("CREATED")]
DateTimeOffset Created { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Headline
Gets or sets the headline.
Declaration
[ApiField("HEADLINE")]
string? Headline { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the id.
Declaration
[ApiField("ID")]
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or sets the name.
Declaration
[ApiField("NAME")]
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Position
Gets or sets the position.
Declaration
[ApiField("POSITION")]
int Position { get; set; }
Property Value
Type | Description |
---|---|
int |
UrlPath
Gets or sets the url path.
Declaration
[ApiField("URLPATH")]
string? UrlPath { get; set; }
Property Value
Type | Description |
---|---|
string |