mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-30 17:47:20 +01:00
12 lines
164 B
Go
12 lines
164 B
Go
package model
|
|
|
|
// App holds application details
|
|
type App struct {
|
|
ID string
|
|
Name string
|
|
Desc string
|
|
URL string
|
|
Author string
|
|
Version string
|
|
}
|