ScriptTag

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

Represents a tag associated with a script entity.

public class ScriptTag : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerScriptTag

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

ScriptTag()

public ScriptTag()

Properties

CreatedAt

Gets or sets the date and time when the tag was created.

public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

Description

Gets or sets the description of the tag.

public string Description { get; set; }

Property Value

string

Id

Gets or sets the ID of the tag.

public int Id { get; set; }

Property Value

int

Metadata

Gets or sets the metadata of the tag.

public string Metadata { get; set; }

Property Value

string

Script

Gets or sets the script associated with the tag.

[ForeignKey("ScriptId")]
public virtual Script Script { get; set; }

Property Value

Script

ScriptId

Gets or sets the ID of the script associated with the tag.

public int ScriptId { get; set; }

Property Value

int

SourceCode

Gets or sets the source code of the tag.

public string SourceCode { get; set; }

Property Value

string

Tag

Gets or sets the name of the tag.

public string Tag { get; set; }

Property Value

string

Version

Gets or sets the version of the tag.

public string Version { get; set; }

Property Value

string

Last updated