Backend for the Teso project written in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
459 B

3 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Teso_API.Models
{
public class PostedAd
{
public Post post { get; set; }
public List<PostFav> likes { get; set; }
public List<CommentsPost> comments { get; set; }
public bool campaignAd { get; set; }
public CampAd campaignAdvert { get; set; }
public TesoUser publisher { get; set; }
}
}