Table of Contents

Class CodeSessionFileStoreItem

Namespace
FoundationaLLM.Context.Models
Assembly
FoundationaLLM.Context.dll

Represents an file system item in a code session.

public class CodeSessionFileStoreItem
Inheritance
CodeSessionFileStoreItem
Inherited Members
Extension Methods

Properties

ContentType

Gets or sets the content of the file system item.

[JsonPropertyName("contentType")]
public required string ContentType { get; set; }

Property Value

string

LastModifiedAt

Gets or sets the last modified date and time of the file system item.

[JsonPropertyName("lastModifiedAt")]
public required DateTimeOffset LastModifiedAt { get; set; }

Property Value

DateTimeOffset

Name

Gets or sets the name of the file system item.

[JsonPropertyName("name")]
public required string Name { get; set; }

Property Value

string

ParentPath

Gets or sets the path of the file system item.

[JsonIgnore]
public string ParentPath { get; set; }

Property Value

string

SizeInBytes

Gets or sets the size of the file system item in bytes.

[JsonPropertyName("sizeInBytes")]
public required long SizeInBytes { get; set; }

Property Value

long

Type

Gets or sets the type of the file system item.

[JsonPropertyName("type")]
public required string Type { get; set; }

Property Value

string