Files
myAi/cv-matcher-api/Data/Entities/CvMatcherChatCacheEntity.cs
T
claude 20b4127fda
Build and Push Docker Images / build (push) Successful in 2s
Changes
2026-05-04 21:41:14 +03:00

11 lines
359 B
C#

namespace Api.Data.Entities;
public sealed class CvMatcherChatCacheEntity
{
public string CacheKey { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
public decimal Temperature { get; set; }
public string ResponseText { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}