VideoChannel accessors.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-01-07 19:35:25 -05:00
parent efbe655c78
commit 7ca8df2924
2 changed files with 101 additions and 1 deletions

View File

@ -16,5 +16,5 @@ BaselineOfVideoWeb >> baseline: spec [
{ #category : #accessing }
BaselineOfVideoWeb >> semanticVersion [
^ '0.4.0'
^ '0.4.1'
]

View File

@ -15,3 +15,103 @@ Class {
],
#category : #VideoWeb
}
{ #category : #accessing }
VideoChannel >> author [
^ author
]
{ #category : #accessing }
VideoChannel >> author: anObject [
author := anObject
]
{ #category : #accessing }
VideoChannel >> authorBanners [
^ authorBanners
]
{ #category : #accessing }
VideoChannel >> authorBanners: anObject [
authorBanners := anObject
]
{ #category : #accessing }
VideoChannel >> authorId [
^ authorId
]
{ #category : #accessing }
VideoChannel >> authorId: anObject [
authorId := anObject
]
{ #category : #accessing }
VideoChannel >> authorThumbnails [
^ authorThumbnails
]
{ #category : #accessing }
VideoChannel >> authorThumbnails: anObject [
authorThumbnails := anObject
]
{ #category : #accessing }
VideoChannel >> description [
^ description
]
{ #category : #accessing }
VideoChannel >> description: anObject [
description := anObject
]
{ #category : #accessing }
VideoChannel >> isFamilyFriendly [
^ isFamilyFriendly
]
{ #category : #accessing }
VideoChannel >> isFamilyFriendly: anObject [
isFamilyFriendly := anObject
]
{ #category : #accessing }
VideoChannel >> latestVideos [
^ latestVideos
]
{ #category : #accessing }
VideoChannel >> latestVideos: anObject [
latestVideos := anObject
]
{ #category : #accessing }
VideoChannel >> relatedChannels [
^ relatedChannels
]
{ #category : #accessing }
VideoChannel >> relatedChannels: anObject [
relatedChannels := anObject
]
{ #category : #accessing }
VideoChannel >> subscribersCount [
^ subscribersCount
]
{ #category : #accessing }
VideoChannel >> subscribersCount: anObject [
subscribersCount := anObject
]
{ #category : #accessing }
VideoChannel >> totalViews [
^ totalViews
]
{ #category : #accessing }
VideoChannel >> totalViews: anObject [
totalViews := anObject
]