BlogFile¶
The BlogFile object represents a single blog file for blog article in the storefront.
classDiagram
direction LR
BlogFile --> Url
BlogFile --> Size
class Url{
}
class Size{
}
class BlogFile{
int id
string name
string description
string extension
Url url
Size size
}
Properties¶
Attribute name | Type | Description |
---|---|---|
id | int |
The unique identifier of the blog file. |
name | string |
Name of the blog file. |
description | string |
Description of the blog file. |
extension | string |
Extension of the blog file. |
url | Url |
The Url object of the blog file. |
size | Size |
The Size object of the blog file. |