Files
cms_thermo_active/Client2020/BrowserTools/Models/FolderBackup.cs
T
2021-03-15 14:51:24 +01:00

15 lines
272 B
C#

using System;
using System.Collections.Generic;
namespace Client2020.BrowserTools.Models
{
public class FolderBackup
{
public String AbsolutePath;
public FolderBackup(String Str)
{
this.AbsolutePath = Str;
}
}
}