85ef2a1c22
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Failing after 10m14s
Frontend CI / build-and-check (push) Failing after 16m12s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Failing after 14m7s
🚀 Create and publish a Docker image / Build & publish backend image (push) Failing after 14m59s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Failing after 14m57s
Backend CI / build-and-test (push) Failing after 13m27s
29 lines
893 B
C#
29 lines
893 B
C#
namespace UniVerse.Application.DTOs.Sync;
|
|
|
|
public record SyncScheduleRequest(
|
|
IReadOnlyList<string>? SpecialtyCode,
|
|
DateTime? TimeMin,
|
|
DateTime? TimeMax,
|
|
IReadOnlyList<string>? TypeId,
|
|
int? Size = null,
|
|
IReadOnlyList<string>? RoomId = null,
|
|
IReadOnlyList<string>? AttendeePersonId = null,
|
|
IReadOnlyList<string>? CourseUnitRealizationId = null,
|
|
IReadOnlyList<string>? CycleRealizationId = null,
|
|
IReadOnlyList<int>? LearningStartYear = null,
|
|
IReadOnlyList<string>? ProfileName = null,
|
|
IReadOnlyList<string>? CurriculumId = null
|
|
);
|
|
|
|
public record SyncResultDto(
|
|
int Created,
|
|
int Updated,
|
|
int Skipped,
|
|
string? Error,
|
|
IReadOnlyList<string>? Details = null
|
|
);
|
|
|
|
public record SyncStatusDto(DateTime? LastSyncAt, string Status, SyncResultDto? LastResult);
|
|
|
|
public record EmployeeDto(string? Id, string FullName, string? Department);
|