This commit is contained in:
2015-06-03 00:36:31 +02:00
parent a893750a29
commit 3570859bf4
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI.WebControls;
namespace Scrummer.Code.Controls
{
public class CButton : Button
{
public CButton()
{
CssClass = "button";
}
}
}