18 lines
441 B
C#
18 lines
441 B
C#
using Microsoft.AspNetCore.Http;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models
|
|
{
|
|
public class TourForm
|
|
{
|
|
public string TransferDestinationId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public IFormFile? CoverImage { get; set; }
|
|
}
|
|
}
|