37 lines
862 B
C#
37 lines
862 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.ViewModels
|
|
{
|
|
public class CompanyInformationViewModel
|
|
{
|
|
/// <summary>
|
|
/// 廠商代碼
|
|
/// </summary>
|
|
[JsonPropertyName("Id")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 廠商代碼
|
|
/// </summary>
|
|
[JsonPropertyName("CompanyCode")]
|
|
public string CompanyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 廠商名稱
|
|
/// </summary>
|
|
[JsonPropertyName("CompanyName")]
|
|
public string CompanyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 廠商Email
|
|
/// </summary>
|
|
[JsonPropertyName("Email")]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|