Files
BeWoPlaner/BeWoPlanerMobil/Models/IDocumentsModel.cs

16 lines
395 B
C#
Raw Normal View History

using BS.Shared.DataContracts;
using System.Collections.Generic;
using BS.Shared;
namespace BeWoPlanerMobil.Models
{
public interface IDocumentsModel
{
string HtmlPrefix { get; }
List<BeWoFolderDC> FolderTree { get; set; }
Dictionary<string, bool> Collapsibles2IsShown { get; set; }
TableID ObjectTid { get; }
long? ObjectOid { get; }
}
}