13 lines
194 B
Go
13 lines
194 B
Go
|
/*
|
||
|
* SPDX-FileCopyrightText: 2023 jordi fita mas <jfita@peritasoft.com>
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
package form
|
||
|
|
||
|
type Media struct {
|
||
|
*Input
|
||
|
Label string
|
||
|
Prompt string
|
||
|
}
|