using System; using System.Collections.Generic; using System.Text; namespace XLIMS.CONTRACT { public interface IActivityViewModel { string Title { get; } object View { get; } } }