initial commit lets start
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package models
|
||||
|
||||
type PLCopenXML struct {
|
||||
Project *Project `xml:"project"`
|
||||
}
|
||||
|
||||
func NewPLCopenXML() *PLCopenXML {
|
||||
plcopenxml := &PLCopenXML{}
|
||||
plcopenxml.AddProject()
|
||||
return plcopenxml
|
||||
}
|
||||
|
||||
func (openXML *PLCopenXML) AddProject() *Project {
|
||||
openXML.Project = &Project{
|
||||
Xmlns: XMLNS_Project,
|
||||
}
|
||||
return openXML.Project
|
||||
}
|
||||
Reference in New Issue
Block a user