2024-09-19 02:04:22 -04:00
|
|
|
// Code generated from Pkl module `transactions`. DO NOT EDIT.
|
|
|
|
|
package transactions
|
2024-09-05 18:37:38 -04:00
|
|
|
|
|
|
|
|
// Base class for all proposals
|
|
|
|
|
type Proposal struct {
|
|
|
|
|
// The title of the proposal
|
|
|
|
|
Title string `pkl:"title"`
|
|
|
|
|
|
|
|
|
|
// The description of the proposal
|
|
|
|
|
Description string `pkl:"description"`
|
|
|
|
|
}
|