17 lines
420 B
C#
17 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.BindingModels
|
|
{
|
|
public class DealBindingModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime DateConclusions { get; set; } = DateTime.Now;
|
|
public DateTime DateClose { get; set; } = DateTime.Now;
|
|
public int ClientId { get; set; }
|
|
}
|
|
}
|