20 lines
523 B
C#
20 lines
523 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
public class SedeConsegna
|
|
{
|
|
[Key]
|
|
public string? Pctipcon { get; set; }
|
|
[Key]
|
|
public string? Pccodcon { get; set; }
|
|
[Key]
|
|
public int? Cprownum { get; set; }
|
|
public int? Cproword { get; set; }
|
|
public string? Pccodsed { get; set; }
|
|
public string? Pcdescri { get; set; }
|
|
public string? Pcindiri { get; set; }
|
|
}
|
|
}
|