21 lines
501 B
C#
21 lines
501 B
C#
using System;
|
|
|
|
namespace DepartmentContract.BindingModels
|
|
{
|
|
public class StudentGroupSaveToWordBindingModel
|
|
{
|
|
public string FileName { get; set; }
|
|
|
|
public Guid StudentGroupId { get; set; }
|
|
|
|
public bool ShowNumberOfBook { get; set; } = false;
|
|
|
|
public bool UnionFIO { get; set; } = false;
|
|
|
|
public bool UseInitials { get; set; } = false;
|
|
|
|
public bool ShowStatus { get; set; } = false;
|
|
|
|
public bool ShowInfo { get; set; } = false;
|
|
}
|
|
} |