Files
XLIMS/XLIMS.CONTRACT/IActivityViewModel.cs
Курнат Андрей f0e11d6379 first edit
2026-01-31 16:11:36 +03:00

14 lines
212 B
C#

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