Persoenliche Mediazentrale
ulrich
2021-04-06 86bbf7cbbfcdc82c994b0a3d0ea9a04290160683
commit | author | age
86bbf7 1 /*
U 2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 package de.uhilger.mediaz.store;
7
8 /**
9  *
10  * @author ulrich
11  */
12 public class StorageFile {
13   private String name;
14   private String typ;
15
16   public String getName() {
17     return name;
18   }
19
20   public void setName(String name) {
21     this.name = name;
22   }
23
24   public String getTyp() {
25     return typ;
26   }
27
28   public void setTyp(String typ) {
29     this.typ = typ;
30   }
31   
32 }