17 lines
331 B
C#
17 lines
331 B
C#
|
using DataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.ViewModels
|
|||
|
{
|
|||
|
public class SellViewModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public DateTime SellDate { get; set; }
|
|||
|
public ISupplyDoc? SupplyDoc { get; set; }
|
|||
|
}
|
|||
|
}
|