NikivorovaMV/Models/Datum.cs

16 lines
289 B
C#
Raw Normal View History

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!;
}