mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
1.5
This commit is contained in:
22
Esyur/Resource/PublicAttribute.cs
Normal file
22
Esyur/Resource/PublicAttribute.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Esyur.Resource
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Event | AttributeTargets.Class)]
|
||||
|
||||
public class PublicAttribute : Attribute
|
||||
{
|
||||
|
||||
// public StorageMode Storage { get; set; }
|
||||
|
||||
//public bool Serialize { get; set; }
|
||||
|
||||
public PublicAttribute()//StorageMode storage = StorageMode.NonVolatile, bool serialize = true)
|
||||
{
|
||||
// Storage = storage;
|
||||
//Serialize = serialize;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user