15 lines
277 B
C#
15 lines
277 B
C#
/*
|
|
* 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;
|
|
|
|
public struct ExceptionLogEntry
|
|
{
|
|
public string Message { get; set; }
|
|
}
|