Class DbPublishDetails
Defines details for a published media content reference
Inheritance
System.Object
DbPublishDetails
Implements
IItem<System.Int32>
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: ImageVault.Core.Common.DbEntities
Assembly: ImageVault.Core.dll
Syntax
public class DbPublishDetails
Constructors
DbPublishDetails()
Declaration
public DbPublishDetails()
Properties
Data
The data in json serialized form. The data needs to implement the IPublishDetailsData class
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Date
The date when the details where created
Declaration
public DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Id
The id of the details
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PublishedMediaContentReference
Navigation property to parent published media content reference
Declaration
public DbPublishedMediaContentReference PublishedMediaContentReference { get; set; }
Property Value
Type | Description |
---|---|
DbPublishedMediaContentReference |
PublishedMediaContentReferenceId
The id of the published media content reference that this details belong to
Declaration
public string PublishedMediaContentReferenceId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
ToPublishDetails()
Creates a PublishDetails from this instance
Declaration
public PublishDetails ToPublishDetails()
Returns
Type | Description |
---|---|
PublishDetails |