Skip to content
release.go 377 B
Newer Older
Michel Roy's avatar
Michel Roy committed
 * Copyright (c) 2019
 * InterDigital Communications, Inc.
 * All rights reserved.
Michel Roy's avatar
Michel Roy committed
 * The information provided herein is the proprietary and confidential
 * information of InterDigital Communications, Inc.
 */

package model

type Release struct {

	// Release name
	Name string `json:"name,omitempty"`

	// Current release state
	State string `json:"state,omitempty"`
}