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 SmallSoftwareContracts.ViewModels;
|
|
|
|
public class ManufacturerViewModel
|
|
{
|
|
public required string Id { get; set; }
|
|
public required string ManufacturerName { get; set; }
|
|
public string? PrevManufacturerName { get; set; }
|
|
public string? PrevPrevManufacturerName { get; set; }
|
|
|
|
}
|