using System; namespace MAX.Models { public class VendorEvent { public enum VendorEventType { Unknown = 0, Login = 1, OfflineLogin = 2, ExtendLogin = 3, Logout = 4, DownloadVoucher = 5, PrintVoucher = 6, ViewVoucherPIN = 7, ExportVoucher = 8 } public int Id { get; set; } public int VendorId { get; set; } public int UserId { get; set; } public int? VoucherId { get; set; } public int? RemoteId { get; set; } public DateTimeOffset EventDate { get; set; } public VendorEventType EventType { get; set; } public bool Retry { get; set; } } }