10 lines
258 B
C#
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; }
|
|
} |