using BookAStar.Model.Social;
using System;
namespace BookAStar.Model.Workflow.Messaging
{
///
/// Query, for a date, with a given perfomer, at this given place.
///
public class BookQuery {
///
/// The command identifier
///
public long Id {get; set; }
public DateTime EventDate{get; set; }
public Location Location { get; set; }
public BookQuery()
{
}
public BookQuery(Location eventLocation, DateTime eventDate)
{
Location = eventLocation;
EventDate = eventDate;
}
}
}