32 lines
776 B
C#
32 lines
776 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 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;
|
|
}
|
|
}
|
|
}
|