Files
2024-07-28 13:00:38 +05:00

15 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IDecorator<T> where T : class
{
T SourceValue { get; }
T GetModifiedValue();
}
}