20 lines
443 B
C#
20 lines
443 B
C#
//
|
|
// Class: ShowReportAttribute
|
|
// Current CLR: 4.0.30319.34209
|
|
// System: Microsoft Visual Studio 10.0
|
|
// Author: dani
|
|
// Created: 5/28/2015 11:38:49 AM
|
|
//
|
|
// Copyright (c) 2015 Informatikbüro Daniel Schick. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bsmd.database
|
|
{
|
|
public class ShowReportAttribute : Attribute
|
|
{
|
|
public ShowReportAttribute() { }
|
|
}
|
|
}
|