15 lines
348 B
C#
15 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmallSoftwareContracts.ViewModels;
|
|
|
|
public class SoftwareHistoryViewModel
|
|
{
|
|
public required string SoftwareName { get; set; }
|
|
public double OldPrice { get; set; }
|
|
public DateTime ChangeDate { get; set; }
|
|
}
|