TourIAm/TIAMWebApp/Shared/Models/Event.cs

26 lines
659 B
C#

namespace TIAMWebApp.Shared.Application.Models
{
public class Event
{
public string Name { get; set; }
public string Description { get; set; }
public string DateAndTime { get; set; }
public string Location { get; set; }
public string ImageUrl { get; set; }
public Event()
{
}
public Event(string name, string description, string dateAndTime, string location, string imageUrl)
{
Name = name;
Description = description;
DateAndTime = dateAndTime;
Location = location;
ImageUrl = imageUrl;
}
}
}