From c6a51d3896d30ffd8af54180586a4d45659e4b90 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 7 Jan 2023 14:20:15 -0500 Subject: [PATCH] Implementing channel model. --- .../BaselineOfVideoWeb.class.st | 2 +- app/VideoWeb/VideoChannel.class.st | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 app/VideoWeb/VideoChannel.class.st 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 +}