WorkTracker/Services/Exports/IMonthlyTimesheetExcelExportService.cs

15 lines
491 B
C#
Raw Normal View History

namespace WorkTracker.Services.Exports;
public interface IMonthlyTimesheetExcelExportService
{
Task<MonthlyTimesheetExcelFile> ExportAsync(int year, int month, bool includePreview, CancellationToken cancellationToken = default);
}
public sealed class MonthlyTimesheetExcelFile
{
public required string FileName { get; init; }
public required byte[] Content { get; init; }
public string ContentType => "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
}