ProductLicense

Namespace: Babel.Data Assembly: Babel.Data.dll

Represents a license associated with a product.

public class ProductLicense : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerProductLicense

Implements

INotifyPropertyChanged

Inherited Members

EntityTracker.SetWithNotify<T>(T, ref T, string), EntityTracker.IsDirty, EntityTracker.PropertyChanged, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

ProductLicense()

public ProductLicense()

Properties

License

Gets or sets the license associated with the product.

[ForeignKey("LicenseId")]
public virtual License License { get; set; }

Property Value

License

LicenseId

Gets or sets the ID of the license associated with the product.

public int LicenseId { get; set; }

Property Value

int

Product

Gets or sets the product associated with the license.

[ForeignKey("ProductId")]
public virtual Product Product { get; set; }

Property Value

Product

ProductId

Gets or sets the ID of the product associated with the license.

public int ProductId { get; set; }

Property Value

int

Last updated