refactoring

This commit is contained in:
Paul Schneider 2016-10-07 12:49:24 +02:00
commit 61d5e6a184
7 changed files with 60 additions and 21 deletions

View file

@ -0,0 +1,14 @@
using System;
using Yavsc.Model;
namespace Yavsc.Interfaces
{
public interface IBookQueryData
{
ClientProviderInfo Client { get; set; }
DateTime EventDate { get; set; }
long Id { get; set; }
Location Location { get; set; }
decimal? Previsionnal { get; set; }
}
}