Files
dashboard/src/Blueprints/Model.elm

9 lines
140 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
}