#42 delete GrantStatusDto

This commit is contained in:
T-Midnight 2019-04-09 21:31:23 +04:00
parent 7465803162
commit e2e10477ac

View File

@ -1,19 +0,0 @@
package ru.ulstu.grant.model;
public class GrantStatusDto {
private final String id;
private final String name;
public GrantStatusDto(Grant.GrantStatus status) {
this.id = status.name();
this.name = status.getStatusName();
}
public String getId() {
return id;
}
public String getName() {
return name;
}
}