18 lines
393 B
Elm
Raw Normal View History

2020-12-01 17:47:52 +03:00
module BlueprintPage.Model exposing (..)
import Blueprints.Model exposing (Blueprint)
import Modules.Model exposing (Module)
type alias BlueprintViewInfo =
{ name : String
, id : String
, author : String
, authorPeerId : String
, description : String
, website : String
, blueprint : Blueprint
, modules : List Module
2020-12-01 18:16:56 +03:00
, openedModule : Maybe String
2020-12-01 17:47:52 +03:00
}