Skip to content

Commit

Permalink
Update classes for 18.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanroie committed Sep 30, 2018
1 parent 0376c10 commit cad11a6
Show file tree
Hide file tree
Showing 3 changed files with 646 additions and 2 deletions.
29 changes: 29 additions & 0 deletions Classes/HAProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,35 @@ PSObject Type
}
}
}
namespace OPNsense.HAProxy.mapfiles {
public class Mapfile {
#region Parameters
public string content { get; set; }
public string description { get; set; }
public string id { get; set; }
public string name { get; set; }
#endregion Parameters

public Mapfile () {
content = null;
description = null;
id = null;
name = null;
}

public Mapfile (
string Content,
string Description,
string Id,
string Name
) {
content = Content;
description = Description;
id = Id;
name = Name;
}
}
}
namespace OPNsense.HAProxy.luas {
public class Lua {
#region Parameters
Expand Down

0 comments on commit cad11a6

Please sign in to comment.