12 lines
335 B
C#
12 lines
335 B
C#
namespace BLAIzor.Models
|
|
{
|
|
public class SnippetPayload
|
|
{
|
|
public string Type { get; set; } // e.g., "hero", "product_card"
|
|
public string Name { get; set; } // Snippet name
|
|
public string Description { get; set; } // Snippet description
|
|
public string Html { get; set; } // HTML content
|
|
}
|
|
|
|
}
|