11 lines
290 B
C#
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; }
|
|
}
|
|
}
|