mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
9 lines
109 B
C#
9 lines
109 B
C#
namespace ShoppingAssistantApi.Domain.Enums;
|
|
|
|
public enum OpenAiRole
|
|
{
|
|
System,
|
|
User,
|
|
Assistant
|
|
}
|