15 lines
No EOL
491 B
C#
15 lines
No EOL
491 B
C#
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";
|
|
} |