26 lines
896 B
C#
26 lines
896 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BpsRwApp.Models.ProfilRw
|
|
{
|
|
public class AlatPengumpulSampahViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Kelurahan { get; set; } = string.Empty;
|
|
public string Rw { get; set; } = string.Empty;
|
|
public string Rt { get; set; } = string.Empty;
|
|
|
|
public int GerobakDorong { get; set; }
|
|
public int GerobakMotor { get; set; }
|
|
public int MobilPickup { get; set; }
|
|
public int Truk { get; set; }
|
|
public int Dustbin { get; set; }
|
|
public int Container { get; set; }
|
|
public int Landasan { get; set; }
|
|
|
|
public string JenisPetugas { get; set; } = string.Empty;
|
|
public string NamaPetugas { get; set; } = string.Empty;
|
|
public List<string> Jadwal { get; set; } = new();
|
|
public string TpsTujuan { get; set; } = string.Empty;
|
|
}
|
|
}
|