cloud-run/rideshare-plus-website/RidesharePlus/Models/PredictVisualizeViewModel.cs (12 lines of code) (raw):
namespace RidesharePlus.Models;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
public class PredictVisualizeViewModel
{
public PredictVisualizeViewModel()
{
this.LookerEmbedUrl = "https://www.google.com";
}
[DisplayName("Looker Embed Url")]
public string? LookerEmbedUrl { get; set; }
}