Files
dashboard/src/Blueprints/Model.elm

17 lines
261 B
Elm
Raw Normal View History

2020-11-26 21:47:37 +03:00
module Blueprints.Model exposing (..)
2020-11-30 14:31:03 +03:00
2020-11-26 21:47:37 +03:00
type alias Blueprint =
2020-11-30 14:31:03 +03:00
{ dependencies : List String
, id : String
, name : String
}
2020-12-01 17:47:52 +03:00
type alias BlueprintInfo =
{ name : String
, author : String
, instanceNumber : Int
, id: String
}