Skip to content

Commit 6d76288

Browse files
Updated SyncJob model with ScheduledDate property and added to EF migrations
1 parent e0a68fa commit 6d76288

File tree

4 files changed

+593
-2
lines changed

4 files changed

+593
-2
lines changed

Service/GroupMembershipManagement/Models/SyncJob.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ public SyncJob(string partitionKey, string rowKey)
7575
[IgnoreLogging]
7676
public DateTime StartDate { get; set; } = SqlDateTime.MinValue.Value;
7777

78+
/// <summary>
79+
/// Scheduled Date (UTC)
80+
/// </summary>
81+
[IgnoreLogging]
82+
public DateTime ScheduledDate { get; set; } = SqlDateTime.MinValue.Value;
83+
7884
/// <summary>
7985
/// Ignore threshold check if this is set to true
8086
/// </summary>

0 commit comments

Comments
 (0)