demka/demofinish/Models/Pickuppoint.cs
2024-12-26 16:15:57 +03:00

12 lines
207 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Pickuppoint
{
public int Pickuppointid { get; set; }
public string? Pickupname { get; set; }
}