mirror of
https://github.com/fluencelabs/dashboard
synced 2025-06-30 15:11:39 +00:00
17 lines
261 B
Elm
17 lines
261 B
Elm
module Blueprints.Model exposing (..)
|
|
|
|
|
|
type alias Blueprint =
|
|
{ dependencies : List String
|
|
, id : String
|
|
, name : String
|
|
}
|
|
|
|
|
|
type alias BlueprintInfo =
|
|
{ name : String
|
|
, author : String
|
|
, instanceNumber : Int
|
|
, id: String
|
|
}
|