using System; using System.Collections.Generic; namespace CouponReport.Models.Parkingeyes; public partial class Job { public long Id { get; set; } public long? StateId { get; set; } public string? StateName { get; set; } public string InvocationData { get; set; } = null!; public string Arguments { get; set; } = null!; public DateTime CreatedAt { get; set; } public DateTime? ExpireAt { get; set; } public virtual ICollection JobParameters { get; set; } = new List(); public virtual ICollection States { get; set; } = new List(); }