[LIB-9] Add functional for build image chess diagrams
[chesshog.git] / chesshog-db-etude / src / main / java / org / hedgecode / chess / dto / EtudeTypeDTO.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.dto;
18
19 /**
20  *
21  *
22  * @author Dmitry Samoshin aka gotty
23  */
24 public class EtudeTypeDTO {
25
26     /**
27      *
28      */
29     private Long id;
30
31     public Long getId() {
32         return id;
33     }
34
35     public void setId(Long id) {
36         this.id = id;
37     }
38
39     /**
40      *
41      */
42     private String brief;
43
44     public String getBrief() {
45         return brief;
46     }
47
48     public void setBrief(String brief) {
49         this.brief = brief;
50     }
51
52     /**
53      *
54      */
55     private String name;
56
57     public String getName() {
58         return name;
59     }
60
61     public void setName(String name) {
62         this.name = name;
63     }
64
65     /**
66      *
67      */
68     private String description;
69
70     public String getDescription() {
71         return description;
72     }
73
74     public void setDescription(String description) {
75         this.description = description;
76     }
77
78 }