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.
20 lines
562 B
20 lines
562 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Teso_API.Models
|
|
{
|
|
public partial class Campaign
|
|
{
|
|
public string CampaignId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public string Status { get; set; }
|
|
public int? Rewards { get; set; }
|
|
public string TargetProduct { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public string BusinessId { get; set; }
|
|
}
|
|
}
|
|
|