diff --git a/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st b/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st index 1c30467..615a2dd 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.2.1' + ^ '0.3.0' ] diff --git a/app/VideoWeb/VideoChannel.class.st b/app/VideoWeb/VideoChannel.class.st new file mode 100644 index 0000000..cbc16d4 --- /dev/null +++ b/app/VideoWeb/VideoChannel.class.st @@ -0,0 +1,16 @@ +Class { + #name : #VideoChannel, + #superclass : #Object, + #instVars : [ + 'author', + 'authorId', + 'authorBanners', + 'authorThumbnails', + 'relatedChannels', + 'description', + 'subscribersCount', + 'totalViews', + 'isFamilyFriendly' + ], + #category : #VideoWeb +}