mirror of
https://github.com/algora-io/tv.git
synced 2025-03-17 20:17:45 +02:00
13 lines
325 B
Elixir
13 lines
325 B
Elixir
|
defmodule Algora.Library.Channel do
|
||
|
defstruct user_id: nil,
|
||
|
handle: nil,
|
||
|
name: nil,
|
||
|
tagline: nil,
|
||
|
avatar_url: nil,
|
||
|
external_homepage_url: nil,
|
||
|
is_live: nil,
|
||
|
bounties_count: nil,
|
||
|
orgs_contributed: nil,
|
||
|
tech: nil
|
||
|
end
|