using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class CampAd { public string PostId { get; set; } public string CampaignId { get; set; } public bool? Approved { get; set; } public DateTime? Date_Processed { get; set; } } }