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.

16 lines
386 B

3 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Teso_API.Models
{
public class BusinessProfile
{
public List<Product> products { get; set; }
public List<CouponDetails> coupons { get; set; }
public List<TesoUser> subscribers { get; set; }
public bool subscribed { get; set; }
}
}