Ignore:
Timestamp:
01/07/21 16:13:55 (4 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
509cb95
Parents:
1397178
Message:

refactoring and further login functionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/it/finki/tinki/model/Match.java

    r1397178 r723994f  
    11package it.finki.tinki.model;
    22
     3import it.finki.tinki.model.enumerator.WorkType;
    34import lombok.Data;
    45
     
    1415    float coefficient;
    1516
     17    WorkType type;
     18
    1619    public Match(){}
    1720
    18     public Match(float coefficient) {
     21    public Match(float coefficient, WorkType type) {
    1922        this.coefficient = coefficient;
     23        this.type = type;
    2024    }
    2125}
Note: See TracChangeset for help on using the changeset viewer.