Something went wrong on our end
Forked from
VECTO / VECTO Sim
4590 commits behind the upstream repository.
-
Harald MARTINI authoredHarald MARTINI authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
IDocumentViewModel.cs 460 B
using TUGraz.VectoCommon.InputData;
using TUGraz.VectoCore.Utils;
using VECTO3GUI2020.ViewModel.Interfaces.JobEdit;
namespace VECTO3GUI2020.ViewModel.Interfaces.Document
{
public interface IDocumentViewModel
{
string DocumentName { get; }
XmlDocumentType DocumentType { get; }
DataSource DataSource { get; }
IEditViewModel EditViewModel { get; }
bool Selected { get; set; }
bool CanBeEdited { get; set; }
}
}