Skip to content

Commit

Permalink
Basic Start
Browse files Browse the repository at this point in the history
start of event production equipment organization software.
  • Loading branch information
dahlke2 committed Oct 26, 2015
0 parents commit 73dbb31
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Audio.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Audio.cs
// Created on October 25, 2015 by Ethan Dahlke
// Last updated, October 25, 2015

class Case : Equipment
{

}

class Rack : Equipment
{

}

class Speaker : Equipment
{

}
37 changes: 37 additions & 0 deletions Equipment.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Equipment.cs
// Created on October 25, 2015 by Ethan Dahlke
// Last updated, October 25, 2015

public class Equipment{
private string myID;
private int myWidth;
private int myLength:
private int myHeight;
private int myWeight;

public string ID
{
get
{
return myID;
}

set
{
myID = value;
}
}

public int Weight
{
get
{
return myWeight;
}

set
{
myWeight = value;
}
}
}

0 comments on commit 73dbb31

Please sign in to comment.