ReleaseResource

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

Represents a mapping between a release and a resource.

public class ReleaseResource : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerReleaseResource

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

ReleaseResource()

public ReleaseResource()

Properties

Release

Gets or sets the release associated with this mapping.

[ForeignKey("ReleaseId")]
public virtual Release Release { get; set; }

Property Value

Release

ReleaseId

Gets or sets the ID of the release.

public int ReleaseId { get; set; }

Property Value

int

Resource

Gets or sets the resource associated with this mapping.

[ForeignKey("ResourceId")]
public virtual Resource Resource { get; set; }

Property Value

Resource

ResourceId

Gets or sets the ID of the resource.

public int ResourceId { get; set; }

Property Value

int

Last updated