Files
esiur-dotnet/Libraries/Esiur/Resource/Attributes/HistoricalAttribute.cs
T
2026-07-12 15:22:42 +03:00

21 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Resource
{
/// <summary>
/// Indicates that previous values of an exported property are retained
/// and may be fetched remotely.
/// </summary>
[AttributeUsage(
AttributeTargets.Property |
AttributeTargets.Field,
AllowMultiple = false,
Inherited = true)]
public sealed class HistoricalAttribute : Attribute
{
}
}