2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 19:42:58 +00:00
esiur-dotnet/Esiur/Resource/ExportAttribute.cs
2023-11-07 16:31:23 +03:00

18 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Resource;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Event | AttributeTargets.Class | AttributeTargets.Enum)]
public class ExportAttribute : Attribute
{
public string Name { get; set; }
public ExportAttribute(string name = null)
{
Name = name;
}
}