1
0

9 lines
241 B
C#

namespace Flawless.Abstraction;
/// <summary>
/// Standardized interface for repository working area (Which means those changes are not committed yet.
/// </summary>
public interface IWorkspace
{
public string Message { get; set; }
}