~teejee2008/timeshift/trunk

« back to all changes in this revision

Viewing changes to src/Common/MountEntry.vala

  • Committer: Tony George
  • Date: 2016-08-13 04:16:47 UTC
  • Revision ID: tony.george.kol@gmail.com-20160813041647-ivf2g6rszt00xco5
Updated project structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using TeeJee.Logging;
 
2
using TeeJee.FileSystem;
 
3
using TeeJee.Devices;
 
4
using TeeJee.JsonHelper;
 
5
using TeeJee.ProcessHelper;
 
6
using TeeJee.GtkHelper;
 
7
using TeeJee.System;
 
8
using TeeJee.Misc;
 
9
 
 
10
public class MountEntry : GLib.Object{
 
11
        public Device device = null;
 
12
        public string mount_point = "";
 
13
 
 
14
        public MountEntry(Device device, string mount_point){
 
15
                this.device = device;
 
16
                this.mount_point = mount_point;
 
17
        }
 
18
}