Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace App1.DataModel
{
    class Bottone
    {
        public String targetID { get; set; }
        public String testo { get; set; }
        public String preCond { get; set; }
        public String postCond { get; set; }

        public Bottone()
        { }

        public Bottone(String targetId, String testo, String preCond, String postCond)
        {
            this.targetID = targetId;
            this.testo = testo;
            this.preCond = preCond;
            this.postCond = postCond;
        }
    }

    
}

Commits for Nextrek/Windows8/Minstrek/Walkinback/App1/DataModel/Bottone.cs

Diff revisions: vs.
Revision Author Commited Message
14 FMMortaroli picture FMMortaroli Mon 24 Jun, 2013 21:19:06 +0000