PatternsCSharpExtraAddons/Patterns/Pattern_2-Шаблонный метод/ExceptionLogEntry.cs

15 lines
277 B
C#
Raw Normal View History

2025-05-12 03:44:31 +03:00
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 03:39:52
* Version: 1.0.4
*/
namespace Creational;
2024-10-05 09:30:14 +03:00
public struct ExceptionLogEntry
{
public string Message { get; set; }
}