mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
17 lines
314 B
C#
17 lines
314 B
C#
using System;
|
|
|
|
namespace Serein.Library
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class BindValueAttribute : Attribute
|
|
{
|
|
public object Value { get; }
|
|
|
|
public BindValueAttribute(object value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
|
|
}
|