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.

18 lines
422 B

3 months ago
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Teso_API.Models
{
public class PostUpload
{
public string title { get; set; }
public string thumbnail { get; set; }
public string aspect { get; set; }
public string campaignID { get; set; }
public string path{ get; set; }
}
}