persistence/DD.Persistence.Models/ChangeLogValuesDto.cs
Roman Efremov 5d820fb2c8
All checks were successful
Unit tests / test (push) Successful in 45s
Изменить ChangeLog (упрощение сущности)
2025-01-24 17:24:18 +05:00

18 lines
504 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;
/// <summary>
/// Dto для хранения записей, содержащих начальную и конечную глубину забоя, а также секцию
/// </summary>
public class ChangeLogValuesDto
{
/// <summary>
/// Ключ записи
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Объект записи
/// </summary>
public required IDictionary<string, object> Value { get; set; }
}