14 lines
273 B
C#
Raw Permalink Normal View History

2024-05-20 01:11:07 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PersonnelDepartmentContracts.BindingModels
{
public class BackUpBinidngModel
{
public string FolderName { get; set; } = string.Empty;
}
}