18 lines
363 B
C#
18 lines
363 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NikiforovaMV.Models;
|
|
|
|
public partial class Offer
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Theproposalhasbeenformed { get; set; } = null!;
|
|
|
|
public string Price { get; set; } = null!;
|
|
|
|
public string Deadlines { get; set; } = null!;
|
|
|
|
public string Status { get; set; } = null!;
|
|
}
|