15 lines
276 B
Elm
Raw Normal View History

2020-11-25 19:51:53 +03:00
module ServicePage.Model exposing (..)
2020-11-30 16:33:24 +03:00
import Services.Model exposing (Service)
type alias ServiceInfo =
{ name : String
, id : String
, author : String
, authorPeerId : String
, description : String
, website : String
, service : Service
}