mirror of
https://github.com/fluencelabs/dashboard
synced 2025-04-25 07:42:16 +00:00
17 lines
359 B
Elm
17 lines
359 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
|
||
|
}
|