Interface IWMAssetBaseDTO
Interface for the asset base DTO. This interface only exists to generalize the properties of WMAssetBaseDTO<T>, which relies on generics, and is thus unsuitable for being used as a generic type parameter.
Namespace: Quantellia.WMServer.Asset.Base
Assembly: WMServer.dll
Syntax
public interface IWMAssetBaseDTO
Properties
CreatedBy
ID of the user that created this entity.
Declaration
string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedDate
Date and time this entity was last updated.
Declaration
DateTime CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Documentation
Longer, formatted description of this entity.
Declaration
string? Documentation { get; set; }
Property Value
Type | Description |
---|---|
string |
DocumentationMIMEType
MIME type of Documentation.
Declaration
string? DocumentationMIMEType { get; set; }
Property Value
Type | Description |
---|---|
string |
FullPathName
The unique directory for this WMAssetDirectoryDTO
Declaration
string FullPathName { get; set; }
Property Value
Type | Description |
---|---|
string |
ID
Declaration
string ID { get; set; }
Property Value
Type | Description |
---|---|
string |
LastUpdatedBy
ID of the user that last updated this entity.
Declaration
string LastUpdatedBy { get; set; }
Property Value
Type | Description |
---|---|
string |
LastUpdatedDate
Date and time at which this entity was last updated.
Declaration
DateTime LastUpdatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Name
Name of this entity
Declaration
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
OwnerID
Owner of this entity
Declaration
string OwnerID { get; set; }
Property Value
Type | Description |
---|---|
string |
OwnerType
Type of the owner that owns this entity
Declaration
string OwnerType { get; set; }
Property Value
Type | Description |
---|---|
string |
ParentID
ID for the Parent
Declaration
string ParentID { get; set; }
Property Value
Type | Description |
---|---|
string |
Properties
Custom properties defined by the user
Declaration
Dictionary<string, string>? Properties { get; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Summary
Short summary of this entity.
Declaration
string? Summary { get; set; }
Property Value
Type | Description |
---|---|
string |