diff --git a/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st b/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st index d6766bc..43f39c6 100644 --- a/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st +++ b/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st @@ -16,5 +16,5 @@ BaselineOfVideoWeb >> baseline: spec [ { #category : #accessing } BaselineOfVideoWeb >> semanticVersion [ - ^ '0.4.0' + ^ '0.4.1' ] diff --git a/app/VideoWeb/VideoChannel.class.st b/app/VideoWeb/VideoChannel.class.st index 4d09611..370283d 100644 --- a/app/VideoWeb/VideoChannel.class.st +++ b/app/VideoWeb/VideoChannel.class.st @@ -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 +]