persistence/DD.Persistence.Models/ChangeLog/ChangeLogCommitDto.cs
ngfrolov ebb2c6fade
ChangeLog тесты статистики работают.
Дискриминатор перенесен в таблицу с комитами.
Исправлены методы контроллера на добавление.
Исправлены методы клиента на добавление.
2025-02-28 17:41:34 +05:00

18 lines
409 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DD.Persistence.Models.ChangeLog;
/// <summary>
/// Модель коммита с изменениями
/// </summary>
public class ChangeLogCommitDto : CreateChangeLogCommitCreateRequest
{
/// <summary>
/// Id
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Дата создания
/// </summary>
public DateTimeOffset Creation { get; set; }
}