16 lines
289 B
C#
16 lines
289 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace NikiforovaMV.Models;
|
|||
|
|
|
|||
|
|
public partial class Datum
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Inn { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Phone { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Email { get; set; } = null!;
|
|||
|
|
}
|