Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
- using System.Collections.Generic;
-
- namespace CouponReport.Models.Parkingeyes;
-
- public partial class JobQueue
- {
- public long Id { get; set; }
-
- public long JobId { get; set; }
-
- public string Queue { get; set; } = null!;
-
- public DateTime? FetchedAt { get; set; }
- }
|