BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorUpdateModel.cs
2024-08-23 11:25:44 -05:00

7 lines
144 B
C#

namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorUpdateModel : VectorCreateModel
{
public string Id { get; set; }
}