10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
@startuml
|
|
package com.iluwatar.unitofwork {
|
|
class Student {
|
|
- address : String
|
|
- id : Integer
|
|
- name : String
|
|
+ Student(id : Integer, name : String, address : String)
|
|
}
|
|
}
|
|
@enduml |