Wonky.Client/Wonky.Client/Models/DocView.cs
2023-07-26 12:09:36 +02:00

20 lines
No EOL
700 B
C#

using System.ComponentModel.DataAnnotations;
namespace Wonky.Client.Models;
public class DocView
{
public bool Added { get; set; }
public string ApbDocId { get; set; } = "";
public string ApbDocLink { get; set; } = "";
public string ApvDocId { get; set; } = "";
public string ApvDocLink { get; set; } = "";
public string DocumentDate { get; set; } = "";
public string PictureLink { get; set; } = "";
public string ProductId { get; set; } = "";
public string VariantId { get; set; } = "";
public string VariantName { get; set; } = "";
public string S5A { get; set; } = "";
public string S9A { get; set; } = "";
public bool Selected { get; set; }
}