Files
speckle-sharp-connectors/DUI3/Speckle.Connectors.DUI/Models/DocumentInfo.cs
T
2024-07-04 11:56:34 +01:00

10 lines
425 B
C#

namespace Speckle.Connectors.DUI.Models;
public record DocumentInfo(string Location, string Name, string Id)
{
//?.Replace("\\", "\\\\"); // for some reason, when returning variables from a direct binding call
//we don't need this. nevertheless, after switching to a post response back to the ui,
//we need this to ensure deserialization in js doesn't throw. it's frustrating!
public string? Message { get; set; }
}