Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DefaultLanguageAttribute.cs
1using System;
2
4{
8 [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
9 public class DefaultLanguageAttribute : Attribute
10 {
11 private readonly string languageCode;
12
18 {
19 this.languageCode = LanguageCode;
20 }
21
25 public string LanguageCode => this.languageCode;
26 }
27}
Defines the default language for the class.
DefaultLanguageAttribute(string LanguageCode)
Defines the default language for the class.