ReportProperty

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

Represents a report property entity that inherits from the EntityTracker class.

public class ReportProperty : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerReportProperty

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

ReportProperty()

public ReportProperty()

Properties

Id

Gets or sets the unique identifier of the report property.

public int Id { get; set; }

Property Value

int

Name

Gets or sets the name of the report property.

public string Name { get; set; }

Property Value

string

Report

Gets or sets the report entity.

[ForeignKey("ReportId")]
public virtual Report Report { get; set; }

Property Value

Report

ReportId

Gets or sets the unique identifier of the report.

public int ReportId { get; set; }

Property Value

int

Value

Gets or sets the value of the report property.

public string Value { get; set; }

Property Value

string

Last updated