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