Class SocialNetwork
Class to represent the online platforms that user uses
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace:UM4RS.User.Contact
Assembly:UM4RS.dll
Syntax
[Table("SocialNetwork")]
public class SocialNetwork : ModelEntity<SocialNetwork>, IDisposable, IBaseEntity
Properties
Id
Id (unique) to use as key in the DataBase
Declaration
[Exportable(Name = "UserId", GlobalOrder = 0)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Implements
Url
The URL of the website
Declaration
public string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
UserId
Optional User Id asigned by the platform to the user
Declaration
public string UserId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
UserName
The username of the user in the platform
Declaration
public string UserName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |