Class DbMediaShare
Summary description for DbMediaShare.
Inheritance
System.Object
DbMediaShare
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 DbMediaShare
Constructors
DbMediaShare()
Initializes a new instance of the DbMediaShare class.
Declaration
public DbMediaShare()
DbMediaShare(MediaShare)
Initializes a new instance of the DbMediaShare class.
Declaration
public DbMediaShare(MediaShare mediaShare)
Parameters
Type | Name | Description |
---|---|---|
MediaShare | mediaShare |
Properties
Created
Get/Sets the Created of the DbMediaShare
Declaration
[DateTimeKind(DateTimeKind.Utc)]
public DateTime Created { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
CreatedBy
Get/Sets the CreatedBy of the DbMediaShare
Declaration
public string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Deleted
If the share item is deleted
Declaration
public bool Deleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ExpiryDate
Sets the expiry date on MediaShare.
Declaration
[DateTimeKind(DateTimeKind.Utc)]
public DateTime? ExpiryDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Id
Get/Sets the Id of the DbMediaShare
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Items
Get/Sets the Items of the DbMediaShare
Declaration
public List<DbMediaShareItem> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DbMediaShareItem> |
MediaFormatId
Get/Sets the MediaFormatId of the DbMediaShare
Declaration
public int MediaFormatId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
Get/Sets the Name of the DbMediaShare
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
ToMediaShare()
Declaration
public MediaShare ToMediaShare()
Returns
Type | Description |
---|---|
MediaShare |