ISEbd-22_CourseWork_School/School/SchoolContracts/BindingModels/ReportBindingModel.cs

8 lines
198 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolContracts.BindingModels;
public class ReportBindingModel
{
public string? FileName { get; set; }
public Stream? Stream { get; set; }
public int[]? Ids { get; set; }
}