15 lines
272 B
C#
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;
|
|
}
|
|
}
|
|
}
|