Files
DP44/Common/DTS.Common/.svn/pristine/8a/8afef89d25047def9507a137bae7d1e5af700218.svn-base

11 lines
250 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
// ReSharper disable CheckNamespace
namespace DTS.Common.Base
{
public interface IViewModel
{
// Summary:
// Gets or sets the Model property of the viewmodel object.
object Model { get; set; }
}
}