Files
sonr/txns/Proposal.pkl.go
T

12 lines
269 B
Go
Raw Normal View History

2024-09-05 18:37:38 -04:00
// Code generated from Pkl module `transactions`. DO NOT EDIT.
2024-09-11 15:10:54 -04:00
package txns
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"`
}