Interface IEntity
Represents an entity.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.Entities
Assembly: BiExcellence.OpenBi.Api.Entity.dll
Syntax
[TableAttribute("SHOP_PRODUCT")]
public interface IEntity : ICustomAttributes
Properties
Changed
Gets or sets the changed date.
Declaration
[ApiField("CHANGED")]
DateTimeOffset? Changed { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Created
Gets or sets the created date.
Declaration
[ApiField("CREATED")]
DateTimeOffset? Created { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Description
Gets or sets the description.
Declaration
[ApiField("DESCRIPTION")]
string? Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the id.
Declaration
[ApiField("ID")]
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or sets the name.
Declaration
[ApiField("NAME")]
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Price
Gets or sets the price.
Declaration
[ApiField("PRICE")]
double? Price { get; set; }
Property Value
Type | Description |
---|---|
double? |