git_bsmd/bsmd.database/ShowReportAttribute.cs

44 lines
1.1 KiB
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
{
[AttributeUsage(AttributeTargets.Property)]
public class ShowReportAttribute : Attribute
{
public ShowReportAttribute() { }
}
[AttributeUsage(AttributeTargets.Property)]
public class DateOnlyAttribute : Attribute
{
public DateOnlyAttribute() { }
}
[AttributeUsage(AttributeTargets.Property)]
public class ReportDisplayNameAttribute : Attribute
{
private string displayName;
public ReportDisplayNameAttribute(string displayName)
{
this.displayName = displayName;
}
public string DisplayName
{
get { return this.displayName; }
set { this.displayName = value; }
}
}
}