using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class DemoBimfaceFileWithViewTokenDto : DemoBimfaceFileDto
{
///
///
///
public DemoBimfaceFileWithViewTokenDto() { }
///
///
///
public DemoBimfaceFileWithViewTokenDto(Model.BimfaceFile file, Model.BimfaceFileMapping mapping, string viewToken) : base(file, mapping)
{
this.ViewToken = viewToken;
}
///
///
///
public string ViewToken { get; set; }
}
}