Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
VCard.cs
1using System;
4
6{
7 [CollectionName("VCards")]
8 [TypeName(TypeNameSerialization.None)]
9 [ArchivingTime]
10 [Index("UserName")]
11 public class VCard
12 {
13 private string objectId = null;
15 private string vcardXml = string.Empty;
16
17 public VCard()
18 {
19 }
20
21 [ObjectId]
22 public string ObjectId
23 {
24 get => this.objectId;
25 set => this.objectId = value;
26 }
27
28 public CaseInsensitiveString UserName
29 {
30 get => this.userName;
31 set => this.userName = value;
32 }
33
34 [DefaultValueStringEmpty]
35 public string VCardXml
36 {
37 get => this.vcardXml;
38 set => this.vcardXml = value;
39 }
40
41 }
42}
Represents a case-insensitive string.
static readonly CaseInsensitiveString Empty
Empty case-insensitive string
TypeNameSerialization
How the type name should be serialized.