Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NoBackupAttribute.cs
1using System;
2
4{
8 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = true)]
9 public class NoBackupAttribute : Attribute
10 {
16 {
17 this.Reason = Reason;
18 }
19
23 public string Reason { get; }
24 }
25}
This attribute informs the database layer, that the corresponding collection should not be backed up.
NoBackupAttribute(string Reason)
This attribute informs the database layer, that the corresponding collection should not be backed up.
string Reason
Reason for not making backups, if provided.