Last change
on this file since efdb71a was e6ff724, checked in by Vzdra <vladko.zdravkovski@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
425 bytes
|
Line | |
---|
1 | package it.finki.tinki.model.Users;
|
---|
2 |
|
---|
3 | import it.finki.tinki.model.enumerator.AccountType;
|
---|
4 | import lombok.Data;
|
---|
5 |
|
---|
6 | import javax.persistence.Entity;
|
---|
7 |
|
---|
8 | @Entity
|
---|
9 | @Data
|
---|
10 | public class Team extends Account {
|
---|
11 |
|
---|
12 | int members;
|
---|
13 |
|
---|
14 | public Team(){}
|
---|
15 |
|
---|
16 | public Team(String email, String password, String name, AccountType accountType, int members) {
|
---|
17 | super(email, password, name, accountType);
|
---|
18 | this.members = members;
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.