mirror of
https://github.com/fluencelabs/dashboard
synced 2025-04-24 15:22:14 +00:00
18 lines
393 B
Elm
18 lines
393 B
Elm
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
|
|
, openedModule : Maybe String
|
|
}
|