PatternsCSharpExtraAddons/Patterns/Pattern_5-Наблюдатель(Observer)/SimpleObserver.cs
Dvurechensky 5803b59f38 1.0.2
2025-05-12 03:44:31 +03:00

18 lines
337 B
C#
Raw Permalink 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.

/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 03:39:52
* Version: 1.0.4
*/
using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;
namespace Pattern_5_Наблюдатель_Observer_
{
}