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
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
Name
Gets or sets the name of the file system item.
[JsonPropertyName("name")]
public required string Name { get; set; }
Property Value
ParentPath
Gets or sets the path of the file system item.
[JsonIgnore]
public string ParentPath { get; set; }
Property Value
SizeInBytes
Gets or sets the size of the file system item in bytes.
[JsonPropertyName("sizeInBytes")]
public required long SizeInBytes { get; set; }
Property Value
Type
Gets or sets the type of the file system item.
[JsonPropertyName("type")]
public required string Type { get; set; }