16 lines
282 B
C#
16 lines
282 B
C#
|
using DataModels.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DataModels.Models
|
|||
|
{
|
|||
|
public interface IPurchase : IId
|
|||
|
{
|
|||
|
DateTime DatePurchase { get; }
|
|||
|
PurchaseStatus Status { get; }
|
|||
|
}
|
|||
|
}
|