18 lines
280 B
C#
18 lines
280 B
C#
namespace Salmon.Core.Cliff;
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class PersistentField
|
|
: Attribute
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public PersistentField()
|
|
{
|
|
}
|
|
|
|
public PersistentField(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|