14 lines
252 B
C#
14 lines
252 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace SupplierManager.Models;
|
|||
|
|
|
|||
|
|
public partial class Autokeygenerater
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public long? ProjectInfoCode { get; set; }
|
|||
|
|
|
|||
|
|
public int? CompanyCode { get; set; }
|
|||
|
|
}
|