12 lines
396 B
C#
12 lines
396 B
C#
namespace WebApplication2.Models.ViewModels
|
|
{
|
|
public class BeritaViewModel
|
|
{
|
|
public string Judul { get; set; } = "";
|
|
public string Deskripsi { get; set; } = "";
|
|
public string Gambar { get; set; } = "";
|
|
public DateTime Tanggal { get; set; }
|
|
public string Slug { get; set; } = "";
|
|
public List<string> GambarList { get; set; } = new();
|
|
}
|
|
} |