laatzen/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/RecipePropertyAttribute.cs
2025-03-17 16:03:24 +01:00

11 lines
290 B
C#

namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models
{
using System;
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class RecipePropertyAttribute : Attribute
{
public bool IsReadOnly { get; set; }
}
}