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

22 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Resource
{
/// <summary>
/// Indicates that an exported function does not change resource state,
/// or that an exported property cannot be changed remotely.
/// </summary>
[AttributeUsage(
AttributeTargets.Method |
AttributeTargets.Property |
AttributeTargets.Field,
AllowMultiple = false,
Inherited = true)]
public sealed class ReadOnlyAttribute : Attribute
{
}
}