package com.bcxin.backend.dtos;

import com.bcxin.backend.domain.models.SyncLogSourceModel;
import lombok.Getter;

@Getter
public class SyncDocumentDto {
    private final String id;
    private final String applicationId;
    private final String formId;
    private final SyncLogSourceModel syncLogSourceModel;

    public SyncDocumentDto(String id, String applicationId, String formId, SyncLogSourceModel syncLogSourceModel) {
        this.id = id;
        this.applicationId = applicationId;
        this.formId = formId;
        this.syncLogSourceModel = syncLogSourceModel;
    }
}
