Class ContactCall
[Table("ContactCalls")]
[Index("Slug", new string[] { }, IsUnique = true)]
public class ContactCall
- Inheritance
-
ContactCall
- Inherited Members
Properties
CallContent
public required string CallContent { get; set; }
Property Value
CalledTimestampUTC
Unix-timestamp of when this ContactCall was made.
public required long CalledTimestampUTC { get; set; }
Property Value
ContactId
Id of the Contact related to this ContactCall.
public required long ContactId { get; set; }
Property Value
CreationTimestampUTC
Unix-timestamp of when this ContactCall was inserted into the DB for the first time.
public required long CreationTimestampUTC { get; set; }
Property Value
DeletionTimestampUTC
Unix-timestamp of when this ContactCall was marked for deletion.
public long? DeletionTimestampUTC { get; set; }
Property Value
- long?
Id
Sequential integer primary key.
[Key]
public long Id { get; set; }
Property Value
InternalNotes
public string? InternalNotes { get; set; }
Property Value
Slug
Slug string that uniquely identifies the contact.
[MaxLength(8)]
public required string Slug { get; set; }
Property Value
SpokeWith
public required string SpokeWith { get; set; }