ReportProperty
Namespace: Babel.Data Assembly: Babel.Data.dll
Represents a report property entity that inherits from the EntityTracker class.
public class ReportProperty : EntityTracker, INotifyPropertyChangedInheritance
object ← EntityTracker ← ReportProperty
Implements
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
Name
Gets or sets the name of the report property.
public string Name { get; set; }Property Value
Report
Gets or sets the report entity.
[ForeignKey("ReportId")]
public virtual Report Report { get; set; }Property Value
ReportId
Gets or sets the unique identifier of the report.
public int ReportId { get; set; }Property Value
Value
Gets or sets the value of the report property.
public string Value { get; set; }Property Value
Last updated