Demko6/demko6/Models/UrClient.cs

34 lines
749 B
C#
Raw Normal View History

2025-05-29 01:54:39 +00:00
using System;
using System.Collections.Generic;
namespace demko6.Models;
public partial class UrClient
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string Adress { get; set; } = null!;
public string Inn { get; set; } = null!;
public string Pc { get; set; } = null!;
public string Bik { get; set; } = null!;
public string FioRuk { get; set; } = null!;
public string FioKontakt { get; set; } = null!;
public string PhoneKontakt { get; set; } = null!;
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
public string Code { get; set; } = null!;
public virtual Client? Client { get; set; }
}