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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace John_Glen.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/John Glen/John Glen/DataModel/Bottone.cs

Diff revisions: vs.
Revision Author Commited Message
28 LTardio picture LTardio Mon 08 Jul, 2013 16:35:15 +0000