using System; using System.Collections.Generic; namespace CouponReport.Models.Parkingeyes; public partial class ParkingStationExtendSetting { public int Id { get; set; } public string Type { get; set; } = null!; public string SiteId { get; set; } = null!; public string Value { get; set; } = null!; public bool IsActive { get; set; } public string? Remark { get; set; } }