Files
Backend-Api/CompanyManagment.App.Contracts/Contact2/Contact2ViewModel.cs
2024-07-05 21:36:15 +03:30

10 lines
258 B
C#

namespace CompanyManagment.App.Contracts.Contact2;
public class Contact2ViewModel
{
public long Id { get; set; }
public string NameContact { get; set; }
public string IsActiveString { get; set; }
public string Signature { get; set; }
}