7 lines
232 B
C#
7 lines
232 B
C#
using OnlyPrompt.Backend.Utils;
|
|
|
|
namespace OnlyPrompt.Backend.ApiModels.Prompt
|
|
{
|
|
public record ApiCreatePromptRequest(string Title, string Description, string Content, Identifier Category, int? SubscriptionTier, string Slug);
|
|
}
|