/
afanasevn
/
MaxSystems
Обзор
Документация
Войти
/
afanasevn
/
MaxSystems
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/MaxSystems.Domain/Entities/ImportLog.cs
29 строк
804 B
IBS\NAfanasev
Update documentation and comments
22 июн 2026, 19:13
22 июн 2026, 19:13
ff853a6
Код
Авторство
О чём код?
namespace MaxSystems.Domain.Entities; /// <summary> /// Журнал импорта данных. /// </summary> public class ImportLog { public Guid Id { get; set; } public Guid? UserId { get; set; } public string FileName { get; set; } = string.Empty; /// <summary>Тип импортируемых данных (equipment, warehouse и т.д.).</summary> public string DataType { get; set; } = string.Empty; public int TotalRows { get; set; } public int SuccessRows { get; set; } public int ErrorRows { get; set; } /// <summary>Ошибки по строкам (частичная загрузка).</summary> public string? ErrorsJson { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public User? User { get; set; } }