23 lines
442 B
C#
23 lines
442 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ThAmCo.Events.Models
|
|||
|
{
|
|||
|
public class VenueDto
|
|||
|
{
|
|||
|
public string Code { get; set; }
|
|||
|
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string Description { get; set; }
|
|||
|
|
|||
|
public int Capacity { get; set; }
|
|||
|
|
|||
|
public DateTime Date { get; set; }
|
|||
|
|
|||
|
public double CostPerHour { get; set; }
|
|||
|
}
|
|||
|
}
|