forked from bcgov/supreme-court-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged all call for activities and presiders into a single BE call
- Loading branch information
Timaqt
authored and
Timaqt
committed
Nov 22, 2024
1 parent
7944f22
commit b38207a
Showing
4 changed files
with
77 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Scv.Api.Models.Lookup; | ||
using System.Collections.Generic; | ||
|
||
namespace Scv.Api.Models.Calendar | ||
{ | ||
public class CalendarSchedule | ||
{ | ||
public List<CalendarDay> Schedule { get; set; } | ||
public List<FilterCode> Activities { get; set; } | ||
public List<FilterCode> Presiders { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters