1
0
mirror of https://github.com/algora-io/tv.git synced 2025-03-17 20:17:45 +02:00

15 lines
391 B
Elixir
Raw Normal View History

2024-02-29 22:31:42 +03:00
defmodule Algora.Library.Channel do
defstruct user_id: nil,
handle: nil,
name: nil,
tagline: nil,
avatar_url: nil,
external_homepage_url: nil,
2024-05-25 12:30:01 +03:00
twitter_url: nil,
2024-02-29 22:31:42 +03:00
is_live: nil,
bounties_count: nil,
orgs_contributed: nil,
2024-05-10 11:45:33 +03:00
tech: nil,
solving_challenge: nil
2024-02-29 22:31:42 +03:00
end