21 lines
582 B
C#
21 lines
582 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models
|
|
{
|
|
public class TourInfo
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid TransferDestinationId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Bio { get; set; }
|
|
public string? FancyDescription { get; set; }
|
|
public string? CoverImageUrl { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime Modified { get; set; }
|
|
}
|
|
}
|