SeemGen/Models/PhotoSlot.cs

10 lines
312 B
C#

namespace BLAIzor.Models
{
public class PhotoSlot
{
public string Description { get; set; } // AI-generated suggestion
public string ImageUrl { get; set; } // AI-generated or user-selected image
public int SortOrder { get; set; } // order in which it appears in the UI
}
}