[Release 1.0.5-rc20-alpha7]

deploying a batch abstraction
This commit is contained in:
Paul Schneider 2018-06-17 23:34:17 +02:00
commit aeebf8bea9
10 changed files with 642 additions and 7 deletions

View file

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