Implementing channel model.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-01-07 14:20:15 -05:00
parent 31b2cd471f
commit c6a51d3896
2 changed files with 17 additions and 1 deletions

View File

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

View File

@ -0,0 +1,16 @@
Class {
#name : #VideoChannel,
#superclass : #Object,
#instVars : [
'author',
'authorId',
'authorBanners',
'authorThumbnails',
'relatedChannels',
'description',
'subscribersCount',
'totalViews',
'isFamilyFriendly'
],
#category : #VideoWeb
}