BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorUpdateModel.cs

7 lines
144 B
C#
Raw Normal View History

2024-08-23 03:13:40 +00:00
namespace BotSharp.Abstraction.VectorStorage.Models;
2024-08-23 16:25:44 +00:00
public class VectorUpdateModel : VectorCreateModel
2024-08-23 03:13:40 +00:00
{
public string Id { get; set; }
}